summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Bundle
diff options
context:
space:
mode:
Diffstat (limited to 'src/Symfony/Bundle')
-rw-r--r--src/Symfony/Bundle/DebugBundle/composer.json46
-rw-r--r--src/Symfony/Bundle/FrameworkBundle/composer.json80
-rw-r--r--src/Symfony/Bundle/SecurityBundle/composer.json56
-rw-r--r--src/Symfony/Bundle/TwigBundle/composer.json51
-rw-r--r--src/Symfony/Bundle/WebProfilerBundle/composer.json43
5 files changed, 276 insertions, 0 deletions
diff --git a/src/Symfony/Bundle/DebugBundle/composer.json b/src/Symfony/Bundle/DebugBundle/composer.json
new file mode 100644
index 0000000..98305f7
--- /dev/null
+++ b/src/Symfony/Bundle/DebugBundle/composer.json
@@ -0,0 +1,46 @@
+{
+ "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": ">=5.3.9",
+ "ext-xml": "*",
+ "symfony/http-kernel": "~2.6|~3.0.0",
+ "symfony/twig-bridge": "~2.6|~3.0.0",
+ "symfony/var-dumper": "~2.6|~3.0.0"
+ },
+ "require-dev": {
+ "symfony/config": "~2.3|~3.0.0",
+ "symfony/dependency-injection": "~2.3|~3.0.0",
+ "symfony/web-profiler-bundle": "~2.3|~3.0.0"
+ },
+ "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": "2.8-dev"
+ }
+ }
+}
diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json
new file mode 100644
index 0000000..7742d5c
--- /dev/null
+++ b/src/Symfony/Bundle/FrameworkBundle/composer.json
@@ -0,0 +1,80 @@
+{
+ "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": ">=5.3.9",
+ "ext-xml": "*",
+ "symfony/asset": "~2.7|~3.0.0",
+ "symfony/class-loader": "~2.1|~3.0.0",
+ "symfony/dependency-injection": "~2.8.41",
+ "symfony/config": "~2.8",
+ "symfony/event-dispatcher": "~2.8|~3.0.0",
+ "symfony/finder": "^2.0.5|~3.0.0",
+ "symfony/http-foundation": "~2.7.36|^2.8.29",
+ "symfony/http-kernel": "^2.8.22",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/filesystem": "~2.3|~3.0.0",
+ "symfony/routing": "^2.8.17",
+ "symfony/security-core": "^2.8.41|^3.3.17",
+ "symfony/security-csrf": "^2.8.31|^3.3.13",
+ "symfony/stopwatch": "~2.3|~3.0.0",
+ "symfony/templating": "~2.7|~3.0.0",
+ "symfony/translation": "~2.8",
+ "doctrine/cache": "~1.0",
+ "doctrine/annotations": "~1.0"
+ },
+ "require-dev": {
+ "symfony/browser-kit": "~2.4|~3.0.0",
+ "symfony/console": "~2.8.19|~3.2.7",
+ "symfony/css-selector": "^2.0.5|~3.0.0",
+ "symfony/dom-crawler": "^2.0.5|~3.0.0",
+ "symfony/polyfill-intl-icu": "~1.0",
+ "symfony/form": "^2.8.19",
+ "symfony/expression-language": "~2.6|~3.0.0",
+ "symfony/process": "^2.0.5|~3.0.0",
+ "symfony/validator": "~2.5|~3.0.0",
+ "symfony/yaml": "^2.0.5|~3.0.0",
+ "symfony/property-info": "~2.8|~3.0.0",
+ "phpdocumentor/reflection": "^1.0.7",
+ "twig/twig": "~1.34|~2.4",
+ "sensio/framework-extra-bundle": "^3.0.2"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
+ },
+ "suggest": {
+ "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/process": "For using the server:run, server:start, server:stop, and server:status commands"
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Bundle\\FrameworkBundle\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "minimum-stability": "dev",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.8-dev"
+ }
+ }
+}
diff --git a/src/Symfony/Bundle/SecurityBundle/composer.json b/src/Symfony/Bundle/SecurityBundle/composer.json
new file mode 100644
index 0000000..5e8d945
--- /dev/null
+++ b/src/Symfony/Bundle/SecurityBundle/composer.json
@@ -0,0 +1,56 @@
+{
+ "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": ">=5.3.9",
+ "ext-xml": "*",
+ "symfony/security": "^2.8.45|^3.4.15",
+ "symfony/security-acl": "~2.7|~3.0.0",
+ "symfony/http-kernel": "~2.7|~3.0.0",
+ "symfony/polyfill-php70": "~1.0"
+ },
+ "require-dev": {
+ "symfony/browser-kit": "~2.7|~3.0.0",
+ "symfony/console": "~2.7|~3.0.0",
+ "symfony/css-selector": "^2.7|~3.0.0",
+ "symfony/dependency-injection": "~2.8.41",
+ "symfony/dom-crawler": "^2.7|~3.0.0",
+ "symfony/form": "^2.8.18",
+ "symfony/framework-bundle": "^2.8.18",
+ "symfony/http-foundation": "~2.7|~3.0.0",
+ "symfony/twig-bundle": "~2.7|~3.1.0",
+ "symfony/twig-bridge": "^2.7.4|~3.1.0",
+ "symfony/process": "^2.7|~3.0.0",
+ "symfony/validator": "~2.7.25|^2.8.18|~3.2.5",
+ "symfony/yaml": "^2.7|~3.0.0",
+ "symfony/expression-language": "~2.7|~3.0.0",
+ "doctrine/doctrine-bundle": "~1.2",
+ "twig/twig": "~1.34|~2.4"
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Bundle\\SecurityBundle\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "minimum-stability": "dev",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.8-dev"
+ }
+ }
+}
diff --git a/src/Symfony/Bundle/TwigBundle/composer.json b/src/Symfony/Bundle/TwigBundle/composer.json
new file mode 100644
index 0000000..74502c8
--- /dev/null
+++ b/src/Symfony/Bundle/TwigBundle/composer.json
@@ -0,0 +1,51 @@
+{
+ "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": ">=5.3.9",
+ "symfony/asset": "~2.7|~3.0.0",
+ "symfony/twig-bridge": "~2.7|~3.0.0",
+ "symfony/http-foundation": "~2.5|~3.0.0",
+ "symfony/http-kernel": "~2.7.23|^2.8.16",
+ "symfony/polyfill-ctype": "~1.8",
+ "twig/twig": "~1.34|~2.4"
+ },
+ "require-dev": {
+ "symfony/stopwatch": "~2.2|~3.0.0",
+ "symfony/dependency-injection": "^2.6.6|~3.0.0",
+ "symfony/expression-language": "~2.4|~3.0.0",
+ "symfony/config": "~2.8|~3.0.0",
+ "symfony/finder": "^2.0.5",
+ "symfony/routing": "~2.1|~3.0.0",
+ "symfony/templating": "~2.1|~3.0.0",
+ "symfony/yaml": "~2.3|~3.0.0",
+ "symfony/framework-bundle": "~2.7|~3.0.0",
+ "doctrine/annotations": "~1.0"
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Bundle\\TwigBundle\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "minimum-stability": "dev",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.8-dev"
+ }
+ }
+}
diff --git a/src/Symfony/Bundle/WebProfilerBundle/composer.json b/src/Symfony/Bundle/WebProfilerBundle/composer.json
new file mode 100644
index 0000000..c039519
--- /dev/null
+++ b/src/Symfony/Bundle/WebProfilerBundle/composer.json
@@ -0,0 +1,43 @@
+{
+ "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": ">=5.3.9",
+ "symfony/http-kernel": "~2.4|~3.0.0",
+ "symfony/routing": "~2.2|~3.0.0",
+ "symfony/twig-bridge": "~2.7|~3.0.0",
+ "twig/twig": "~1.34|~2.4"
+ },
+ "require-dev": {
+ "symfony/config": "~2.2|~3.0.0",
+ "symfony/console": "~2.3|~3.0.0",
+ "symfony/dependency-injection": "~2.2|~3.0.0",
+ "symfony/stopwatch": "~2.2|~3.0.0"
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Bundle\\WebProfilerBundle\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "minimum-stability": "dev",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.8-dev"
+ }
+ }
+}