From 5679ca3e5d8b28317cdba6e87b2e11f6dbaad6c8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Mar 2019 09:59:17 +0100 Subject: add all composer.json --- src/Symfony/Bundle/DebugBundle/composer.json | 50 ++++++++++ src/Symfony/Bundle/FrameworkBundle/composer.json | 103 +++++++++++++++++++++ src/Symfony/Bundle/SecurityBundle/composer.json | 70 ++++++++++++++ src/Symfony/Bundle/TwigBundle/composer.json | 60 ++++++++++++ src/Symfony/Bundle/WebProfilerBundle/composer.json | 50 ++++++++++ .../Tests/DependencyInjection/composer.json | 6 ++ src/Symfony/Bundle/WebServerBundle/composer.json | 43 +++++++++ 7 files changed, 382 insertions(+) create mode 100644 src/Symfony/Bundle/DebugBundle/composer.json create mode 100644 src/Symfony/Bundle/FrameworkBundle/composer.json create mode 100644 src/Symfony/Bundle/SecurityBundle/composer.json create mode 100644 src/Symfony/Bundle/TwigBundle/composer.json create mode 100644 src/Symfony/Bundle/WebProfilerBundle/composer.json create mode 100644 src/Symfony/Bundle/WebServerBundle/Tests/DependencyInjection/composer.json create mode 100644 src/Symfony/Bundle/WebServerBundle/composer.json (limited to 'src/Symfony/Bundle') diff --git a/src/Symfony/Bundle/DebugBundle/composer.json b/src/Symfony/Bundle/DebugBundle/composer.json new file mode 100644 index 0000000..535d0ed --- /dev/null +++ b/src/Symfony/Bundle/DebugBundle/composer.json @@ -0,0 +1,50 @@ +{ + "name": "symfony/debug-bundle", + "type": "symfony-bundle", + "description": "Symfony DebugBundle", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": "^7.1.3", + "ext-xml": "*", + "symfony/http-kernel": "~3.4|~4.0", + "symfony/twig-bridge": "~3.4|~4.0", + "symfony/var-dumper": "^4.1.1" + }, + "require-dev": { + "symfony/config": "~4.2", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/web-profiler-bundle": "~3.4|~4.0" + }, + "conflict": { + "symfony/config": "<4.2", + "symfony/dependency-injection": "<3.4" + }, + "suggest": { + "symfony/config": "For service container configuration", + "symfony/dependency-injection": "For using as a service from the container" + }, + "autoload": { + "psr-4": { "Symfony\\Bundle\\DebugBundle\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + } +} diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json new file mode 100644 index 0000000..e185549 --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/composer.json @@ -0,0 +1,103 @@ +{ + "name": "symfony/framework-bundle", + "type": "symfony-bundle", + "description": "Symfony FrameworkBundle", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": "^7.1.3", + "ext-xml": "*", + "symfony/cache": "~4.2", + "symfony/config": "~4.2", + "symfony/contracts": "^1.0.2", + "symfony/dependency-injection": "^4.2", + "symfony/event-dispatcher": "^4.1", + "symfony/http-foundation": "^4.1.2", + "symfony/http-kernel": "^4.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/filesystem": "~3.4|~4.0", + "symfony/finder": "~3.4|~4.0", + "symfony/routing": "^4.1" + }, + "require-dev": { + "doctrine/cache": "~1.0", + "fig/link-util": "^1.0", + "symfony/asset": "~3.4|~4.0", + "symfony/browser-kit": "~3.4|~4.0", + "symfony/console": "~3.4|~4.0", + "symfony/css-selector": "~3.4|~4.0", + "symfony/dom-crawler": "~3.4|~4.0", + "symfony/polyfill-intl-icu": "~1.0", + "symfony/security": "~3.4|~4.0", + "symfony/form": "^4.2.3", + "symfony/expression-language": "~3.4|~4.0", + "symfony/messenger": "^4.2", + "symfony/process": "~3.4|~4.0", + "symfony/security-core": "~3.4|~4.0", + "symfony/security-csrf": "~3.4|~4.0", + "symfony/serializer": "^4.2", + "symfony/stopwatch": "~3.4|~4.0", + "symfony/translation": "~4.2", + "symfony/templating": "~3.4|~4.0", + "symfony/validator": "^4.1", + "symfony/var-dumper": "~3.4|~4.0", + "symfony/workflow": "^4.1", + "symfony/yaml": "~3.4|~4.0", + "symfony/property-info": "~3.4|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/web-link": "~3.4|~4.0", + "doctrine/annotations": "~1.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0", + "twig/twig": "~1.34|~2.4" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "<3.0", + "phpdocumentor/type-resolver": "<0.2.1", + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", + "symfony/asset": "<3.4", + "symfony/console": "<3.4", + "symfony/dotenv": "<4.2", + "symfony/form": "<4.2", + "symfony/messenger": "<4.2", + "symfony/property-info": "<3.4", + "symfony/serializer": "<4.2", + "symfony/stopwatch": "<3.4", + "symfony/translation": "<4.2", + "symfony/twig-bridge": "<4.1.1", + "symfony/validator": "<4.1", + "symfony/workflow": "<4.1" + }, + "suggest": { + "ext-apcu": "For best performance of the system caches", + "symfony/console": "For using the console commands", + "symfony/form": "For using forms", + "symfony/serializer": "For using the serializer service", + "symfony/validator": "For using validation", + "symfony/yaml": "For using the debug:config and lint:yaml commands", + "symfony/property-info": "For using the property_info service", + "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering" + }, + "autoload": { + "psr-4": { "Symfony\\Bundle\\FrameworkBundle\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + } +} diff --git a/src/Symfony/Bundle/SecurityBundle/composer.json b/src/Symfony/Bundle/SecurityBundle/composer.json new file mode 100644 index 0000000..5a03f8f --- /dev/null +++ b/src/Symfony/Bundle/SecurityBundle/composer.json @@ -0,0 +1,70 @@ +{ + "name": "symfony/security-bundle", + "type": "symfony-bundle", + "description": "Symfony SecurityBundle", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": "^7.1.3", + "ext-xml": "*", + "symfony/config": "^4.2", + "symfony/dependency-injection": "^4.2", + "symfony/http-kernel": "^4.1", + "symfony/security-core": "~4.2", + "symfony/security-csrf": "~4.2", + "symfony/security-guard": "~4.2", + "symfony/security-http": "~4.2" + }, + "require-dev": { + "symfony/asset": "~3.4|~4.0", + "symfony/browser-kit": "~4.2", + "symfony/console": "~3.4|~4.0", + "symfony/css-selector": "~3.4|~4.0", + "symfony/dom-crawler": "~3.4|~4.0", + "symfony/event-dispatcher": "~3.4|~4.0", + "symfony/form": "~3.4|~4.0", + "symfony/framework-bundle": "~4.2", + "symfony/http-foundation": "~3.4|~4.0", + "symfony/translation": "~3.4|~4.0", + "symfony/twig-bundle": "~4.2", + "symfony/twig-bridge": "~3.4|~4.0", + "symfony/process": "~3.4|~4.0", + "symfony/validator": "~3.4|~4.0", + "symfony/var-dumper": "~3.4|~4.0", + "symfony/yaml": "~3.4|~4.0", + "symfony/expression-language": "~3.4|~4.0", + "doctrine/doctrine-bundle": "~1.5", + "twig/twig": "~1.34|~2.4" + }, + "conflict": { + "symfony/browser-kit": "<4.2", + "symfony/twig-bundle": "<4.2", + "symfony/var-dumper": "<3.4", + "symfony/event-dispatcher": "<3.4", + "symfony/framework-bundle": "<4.2", + "symfony/console": "<3.4" + }, + "autoload": { + "psr-4": { "Symfony\\Bundle\\SecurityBundle\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + } +} diff --git a/src/Symfony/Bundle/TwigBundle/composer.json b/src/Symfony/Bundle/TwigBundle/composer.json new file mode 100644 index 0000000..d9526cf --- /dev/null +++ b/src/Symfony/Bundle/TwigBundle/composer.json @@ -0,0 +1,60 @@ +{ + "name": "symfony/twig-bundle", + "type": "symfony-bundle", + "description": "Symfony TwigBundle", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": "^7.1.3", + "symfony/config": "~4.2", + "symfony/twig-bridge": "^4.2", + "symfony/http-foundation": "~4.1", + "symfony/http-kernel": "~4.1", + "symfony/polyfill-ctype": "~1.8", + "twig/twig": "~1.34|~2.4" + }, + "require-dev": { + "symfony/asset": "~3.4|~4.0", + "symfony/stopwatch": "~3.4|~4.0", + "symfony/dependency-injection": "~4.1", + "symfony/expression-language": "~3.4|~4.0", + "symfony/finder": "~3.4|~4.0", + "symfony/form": "~3.4|~4.0", + "symfony/routing": "~3.4|~4.0", + "symfony/templating": "~3.4|~4.0", + "symfony/translation": "^4.2", + "symfony/yaml": "~3.4|~4.0", + "symfony/framework-bundle": "~4.1", + "symfony/web-link": "~3.4|~4.0", + "doctrine/annotations": "~1.0", + "doctrine/cache": "~1.0" + }, + "conflict": { + "symfony/dependency-injection": "<4.1", + "symfony/framework-bundle": "<4.1", + "symfony/translation": "<4.2" + }, + "autoload": { + "psr-4": { "Symfony\\Bundle\\TwigBundle\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + } +} diff --git a/src/Symfony/Bundle/WebProfilerBundle/composer.json b/src/Symfony/Bundle/WebProfilerBundle/composer.json new file mode 100644 index 0000000..79f4ddb --- /dev/null +++ b/src/Symfony/Bundle/WebProfilerBundle/composer.json @@ -0,0 +1,50 @@ +{ + "name": "symfony/web-profiler-bundle", + "type": "symfony-bundle", + "description": "Symfony WebProfilerBundle", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": "^7.1.3", + "symfony/config": "^4.2", + "symfony/http-kernel": "~4.2", + "symfony/routing": "~3.4|~4.0", + "symfony/twig-bundle": "~4.2", + "symfony/var-dumper": "~3.4|~4.0", + "twig/twig": "~1.34|~2.4" + }, + "require-dev": { + "symfony/console": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/stopwatch": "~3.4|~4.0" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<3.4", + "symfony/messenger": "<4.2", + "symfony/var-dumper": "<3.4" + }, + "autoload": { + "psr-4": { "Symfony\\Bundle\\WebProfilerBundle\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + } +} diff --git a/src/Symfony/Bundle/WebServerBundle/Tests/DependencyInjection/composer.json b/src/Symfony/Bundle/WebServerBundle/Tests/DependencyInjection/composer.json new file mode 100644 index 0000000..a4652eb --- /dev/null +++ b/src/Symfony/Bundle/WebServerBundle/Tests/DependencyInjection/composer.json @@ -0,0 +1,6 @@ +{ + "name": "test-composer.json", + "extra": { + "public-dir": "test" + } +} diff --git a/src/Symfony/Bundle/WebServerBundle/composer.json b/src/Symfony/Bundle/WebServerBundle/composer.json new file mode 100644 index 0000000..4a981ea --- /dev/null +++ b/src/Symfony/Bundle/WebServerBundle/composer.json @@ -0,0 +1,43 @@ +{ + "name": "symfony/web-server-bundle", + "type": "symfony-bundle", + "description": "Symfony WebServerBundle", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "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" + }, + "autoload": { + "psr-4": { "Symfony\\Bundle\\WebServerBundle\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "suggest": { + "symfony/monolog-bridge": "For using the log server.", + "symfony/expression-language": "For using the filter option of the log server." + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + } +} -- cgit