summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Bridge
diff options
context:
space:
mode:
Diffstat (limited to 'src/Symfony/Bridge')
-rw-r--r--src/Symfony/Bridge/Doctrine/composer.json74
-rw-r--r--src/Symfony/Bridge/Monolog/composer.json46
-rw-r--r--src/Symfony/Bridge/PhpUnit/composer.json46
-rw-r--r--src/Symfony/Bridge/ProxyManager/composer.json37
-rw-r--r--src/Symfony/Bridge/Twig/composer.json82
5 files changed, 285 insertions, 0 deletions
diff --git a/src/Symfony/Bridge/Doctrine/composer.json b/src/Symfony/Bridge/Doctrine/composer.json
new file mode 100644
index 0000000..b792582
--- /dev/null
+++ b/src/Symfony/Bridge/Doctrine/composer.json
@@ -0,0 +1,74 @@
+{
+ "name": "symfony/doctrine-bridge",
+ "type": "symfony-bridge",
+ "description": "Symfony Doctrine Bridge",
+ "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",
+ "doctrine/event-manager": "~1.0",
+ "doctrine/persistence": "^1.3|^2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/service-contracts": "^1.1|^2"
+ },
+ "require-dev": {
+ "composer/package-versions-deprecated": "^1.8",
+ "symfony/stopwatch": "^3.4|^4.0|^5.0",
+ "symfony/config": "^4.2|^5.0",
+ "symfony/dependency-injection": "^3.4|^4.0|^5.0",
+ "symfony/form": "^4.4.11|^5.0.11",
+ "symfony/http-kernel": "^4.3.7",
+ "symfony/messenger": "^4.4|^5.0",
+ "symfony/property-access": "^3.4|^4.0|^5.0",
+ "symfony/property-info": "^3.4|^4.0|^5.0",
+ "symfony/proxy-manager-bridge": "^3.4|^4.0|^5.0",
+ "symfony/security-core": "^4.4|^5.0",
+ "symfony/expression-language": "^3.4|^4.0|^5.0",
+ "symfony/validator": "^4.4.2|^5.0.2",
+ "symfony/var-dumper": "^3.4|^4.0|^5.0",
+ "symfony/translation": "^3.4|^4.0|^5.0",
+ "doctrine/annotations": "~1.7",
+ "doctrine/cache": "~1.6",
+ "doctrine/collections": "~1.0",
+ "doctrine/data-fixtures": "^1.1",
+ "doctrine/dbal": "~2.4|^3.0",
+ "doctrine/orm": "^2.6.3",
+ "doctrine/reflection": "~1.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+ "symfony/dependency-injection": "<3.4",
+ "symfony/form": "<4.4",
+ "symfony/http-kernel": "<4.3.7",
+ "symfony/messenger": "<4.3",
+ "symfony/security-core": "<4.4",
+ "symfony/validator": "<4.4.2|<5.0.2,>=5.0"
+ },
+ "suggest": {
+ "symfony/form": "",
+ "symfony/validator": "",
+ "symfony/property-info": "",
+ "doctrine/data-fixtures": "",
+ "doctrine/dbal": "",
+ "doctrine/orm": ""
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Bridge\\Doctrine\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "minimum-stability": "dev"
+}
diff --git a/src/Symfony/Bridge/Monolog/composer.json b/src/Symfony/Bridge/Monolog/composer.json
new file mode 100644
index 0000000..97dd19e
--- /dev/null
+++ b/src/Symfony/Bridge/Monolog/composer.json
@@ -0,0 +1,46 @@
+{
+ "name": "symfony/monolog-bridge",
+ "type": "symfony-bridge",
+ "description": "Symfony Monolog Bridge",
+ "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",
+ "monolog/monolog": "^1.25.1",
+ "symfony/service-contracts": "^1.1|^2",
+ "symfony/http-kernel": "^4.3"
+ },
+ "require-dev": {
+ "symfony/console": "^3.4|^4.0|^5.0",
+ "symfony/http-client": "^4.4|^5.0",
+ "symfony/security-core": "^3.4|^4.0|^5.0",
+ "symfony/var-dumper": "^3.4|^4.0|^5.0"
+ },
+ "conflict": {
+ "symfony/console": "<3.4",
+ "symfony/http-foundation": "<3.4"
+ },
+ "suggest": {
+ "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
+ "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
+ "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Bridge\\Monolog\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "minimum-stability": "dev"
+}
diff --git a/src/Symfony/Bridge/PhpUnit/composer.json b/src/Symfony/Bridge/PhpUnit/composer.json
new file mode 100644
index 0000000..85318fe
--- /dev/null
+++ b/src/Symfony/Bridge/PhpUnit/composer.json
@@ -0,0 +1,46 @@
+{
+ "name": "symfony/phpunit-bridge",
+ "type": "symfony-bridge",
+ "description": "Symfony PHPUnit Bridge",
+ "keywords": [],
+ "homepage": "https://symfony.com",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "require": {
+ "php": ">=5.5.9 EVEN ON LATEST SYMFONY VERSIONS TO ALLOW USING",
+ "php": "THIS BRIDGE WHEN TESTING LOWEST SYMFONY VERSIONS.",
+ "php": ">=5.5.9"
+ },
+ "suggest": {
+ "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
+ },
+ "autoload": {
+ "files": [ "bootstrap.php" ],
+ "psr-4": { "Symfony\\Bridge\\PhpUnit\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "bin": [
+ "bin/simple-phpunit"
+ ],
+ "minimum-stability": "dev",
+ "extra": {
+ "thanks": {
+ "name": "phpunit/phpunit",
+ "url": "https://github.com/sebastianbergmann/phpunit"
+ }
+ }
+}
diff --git a/src/Symfony/Bridge/ProxyManager/composer.json b/src/Symfony/Bridge/ProxyManager/composer.json
new file mode 100644
index 0000000..b34def8
--- /dev/null
+++ b/src/Symfony/Bridge/ProxyManager/composer.json
@@ -0,0 +1,37 @@
+{
+ "name": "symfony/proxy-manager-bridge",
+ "type": "symfony-bridge",
+ "description": "Symfony ProxyManager Bridge",
+ "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",
+ "composer/package-versions-deprecated": "^1.8",
+ "symfony/dependency-injection": "^4.0|^5.0",
+ "ocramius/proxy-manager": "~2.1"
+ },
+ "require-dev": {
+ "symfony/config": "^3.4|^4.0|^5.0"
+ },
+ "conflict": {
+ "zendframework/zend-eventmanager": "2.6.0"
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Bridge\\ProxyManager\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "minimum-stability": "dev"
+}
diff --git a/src/Symfony/Bridge/Twig/composer.json b/src/Symfony/Bridge/Twig/composer.json
new file mode 100644
index 0000000..75860d1
--- /dev/null
+++ b/src/Symfony/Bridge/Twig/composer.json
@@ -0,0 +1,82 @@
+{
+ "name": "symfony/twig-bridge",
+ "type": "symfony-bridge",
+ "description": "Symfony Twig Bridge",
+ "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/translation-contracts": "^1.1|^2",
+ "twig/twig": "^1.41|^2.10|^3.0"
+ },
+ "require-dev": {
+ "egulias/email-validator": "^2.1.10",
+ "symfony/asset": "^3.4|^4.0|^5.0",
+ "symfony/dependency-injection": "^3.4|^4.0|^5.0",
+ "symfony/error-handler": "^4.4|^5.0",
+ "symfony/finder": "^3.4|^4.0|^5.0",
+ "symfony/form": "^4.3.5",
+ "symfony/http-foundation": "^4.3|^5.0",
+ "symfony/http-kernel": "^4.4",
+ "symfony/mime": "^4.3|^5.0",
+ "symfony/polyfill-intl-icu": "~1.0",
+ "symfony/routing": "^3.4|^4.0|^5.0",
+ "symfony/templating": "^3.4|^4.0|^5.0",
+ "symfony/translation": "^4.2.1|^5.0",
+ "symfony/yaml": "^3.4|^4.0|^5.0",
+ "symfony/security-acl": "^2.8|^3.0",
+ "symfony/security-core": "^3.0|^4.0|^5.0",
+ "symfony/security-csrf": "^3.4|^4.0|^5.0",
+ "symfony/security-http": "^3.4|^4.0|^5.0",
+ "symfony/stopwatch": "^3.4|^4.0|^5.0",
+ "symfony/console": "^3.4|^4.0|^5.0",
+ "symfony/expression-language": "^3.4|^4.0|^5.0",
+ "symfony/web-link": "^4.4|^5.0",
+ "symfony/workflow": "^4.3|^5.0",
+ "twig/cssinliner-extra": "^2.12",
+ "twig/inky-extra": "^2.12",
+ "twig/markdown-extra": "^2.12"
+ },
+ "conflict": {
+ "symfony/console": "<3.4",
+ "symfony/form": "<4.4",
+ "symfony/http-foundation": "<4.3",
+ "symfony/translation": "<4.2",
+ "symfony/workflow": "<4.3"
+ },
+ "suggest": {
+ "symfony/finder": "",
+ "symfony/asset": "For using the AssetExtension",
+ "symfony/form": "For using the FormExtension",
+ "symfony/http-kernel": "For using the HttpKernelExtension",
+ "symfony/routing": "For using the RoutingExtension",
+ "symfony/templating": "For using the TwigEngine",
+ "symfony/translation": "For using the TranslationExtension",
+ "symfony/yaml": "For using the YamlExtension",
+ "symfony/security-core": "For using the SecurityExtension",
+ "symfony/security-csrf": "For using the CsrfExtension",
+ "symfony/security-http": "For using the LogoutUrlExtension",
+ "symfony/stopwatch": "For using the StopwatchExtension",
+ "symfony/var-dumper": "For using the DumpExtension",
+ "symfony/expression-language": "For using the ExpressionExtension",
+ "symfony/web-link": "For using the WebLinkExtension"
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Bridge\\Twig\\": "" },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "minimum-stability": "dev"
+}