WebServerBundle added.

This commit is contained in:
Alexey Skobkin 2018-06-20 22:28:52 +03:00
parent 3fbadf4085
commit 7c97b7821b
5 changed files with 128 additions and 2 deletions

4
.gitignore vendored
View File

@ -6,3 +6,7 @@
/var/
/vendor/
###< symfony/framework-bundle ###
###> symfony/web-server-bundle ###
/.web-server-pid
###< symfony/web-server-bundle ###

View File

@ -11,6 +11,7 @@
"symfony/lts": "^4@dev",
"symfony/orm-pack": "^1.0",
"symfony/twig-bundle": "^4.1",
"symfony/web-server-bundle": "^4.1",
"symfony/yaml": "^4.1"
},
"require-dev": {

112
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "bafd77a0f3d14fa070e28a47b7689481",
"content-hash": "ff14d4830f32fea497a51addbee03608",
"packages": [
{
"name": "doctrine/annotations",
@ -2338,6 +2338,55 @@
],
"time": "2018-04-26T10:06:28+00:00"
},
{
"name": "symfony/process",
"version": "v4.1.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
"reference": "73445bd33b0d337c060eef9652b94df72b6b3434"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/73445bd33b0d337c060eef9652b94df72b6b3434",
"reference": "73445bd33b0d337c060eef9652b94df72b6b3434",
"shasum": ""
},
"require": {
"php": "^7.1.3"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Process\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony Process Component",
"homepage": "https://symfony.com",
"time": "2018-05-30T07:26:09+00:00"
},
{
"name": "symfony/routing",
"version": "v4.1.0",
@ -2580,6 +2629,65 @@
"homepage": "https://symfony.com",
"time": "2018-05-16T14:41:07+00:00"
},
{
"name": "symfony/web-server-bundle",
"version": "v4.1.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/web-server-bundle.git",
"reference": "d8f9acbb98e8ce8c45aabe9b695615bed0e77fb4"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/web-server-bundle/zipball/d8f9acbb98e8ce8c45aabe9b695615bed0e77fb4",
"reference": "d8f9acbb98e8ce8c45aabe9b695615bed0e77fb4",
"shasum": ""
},
"require": {
"php": "^7.1.3",
"symfony/config": "~3.4|~4.0",
"symfony/console": "~3.4|~4.0",
"symfony/dependency-injection": "~3.4|~4.0",
"symfony/http-kernel": "~3.4|~4.0",
"symfony/polyfill-ctype": "~1.8",
"symfony/process": "^3.4.2|^4.0.2"
},
"suggest": {
"symfony/expression-language": "For using the filter option of the log server.",
"symfony/monolog-bridge": "For using the log server."
},
"type": "symfony-bundle",
"extra": {
"branch-alias": {
"dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Bundle\\WebServerBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony WebServerBundle",
"homepage": "https://symfony.com",
"time": "2018-05-07T07:14:12+00:00"
},
{
"name": "symfony/yaml",
"version": "v4.1.0",
@ -2880,7 +2988,7 @@
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
"php": "^7.1.3",
"php": "^7.2.0",
"ext-ctype": "*",
"ext-iconv": "*"
},

View File

@ -6,4 +6,5 @@ return [
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
];

View File

@ -146,6 +146,9 @@
"symfony/polyfill-mbstring": {
"version": "v1.8.0"
},
"symfony/process": {
"version": "v4.1.0"
},
"symfony/routing": {
"version": "4.0",
"recipe": {
@ -167,6 +170,15 @@
"ref": "f75ac166398e107796ca94cc57fa1edaa06ec47f"
}
},
"symfony/web-server-bundle": {
"version": "3.3",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "master",
"version": "3.3",
"ref": "dae9b39fd6717970be7601101ce5aa960bf53d9a"
}
},
"symfony/yaml": {
"version": "v4.1.0"
},