From 5679ca3e5d8b28317cdba6e87b2e11f6dbaad6c8 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Mon, 4 Mar 2019 09:59:17 +0100
Subject: add all composer.json

---
 src/Symfony/Bridge/Doctrine/composer.json     | 72 +++++++++++++++++++++++++
 src/Symfony/Bridge/Monolog/composer.json      | 52 ++++++++++++++++++
 src/Symfony/Bridge/PhpUnit/composer.json      | 50 ++++++++++++++++++
 src/Symfony/Bridge/ProxyManager/composer.json | 41 +++++++++++++++
 src/Symfony/Bridge/Twig/composer.json         | 76 +++++++++++++++++++++++++++
 5 files changed, 291 insertions(+)
 create mode 100644 src/Symfony/Bridge/Doctrine/composer.json
 create mode 100644 src/Symfony/Bridge/Monolog/composer.json
 create mode 100644 src/Symfony/Bridge/PhpUnit/composer.json
 create mode 100644 src/Symfony/Bridge/ProxyManager/composer.json
 create mode 100644 src/Symfony/Bridge/Twig/composer.json

(limited to 'src/Symfony/Bridge')

diff --git a/src/Symfony/Bridge/Doctrine/composer.json b/src/Symfony/Bridge/Doctrine/composer.json
new file mode 100644
index 0000000..db7c8ce
--- /dev/null
+++ b/src/Symfony/Bridge/Doctrine/composer.json
@@ -0,0 +1,72 @@
+{
+    "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/collections": "~1.0",
+        "doctrine/event-manager": "~1.0",
+        "doctrine/persistence": "~1.0",
+        "symfony/contracts": "^1.0",
+        "symfony/polyfill-ctype": "~1.8",
+        "symfony/polyfill-mbstring": "~1.0"
+    },
+    "require-dev": {
+        "symfony/stopwatch": "~3.4|~4.0",
+        "symfony/dependency-injection": "~3.4|~4.0",
+        "symfony/form": "~3.4|~4.0",
+        "symfony/http-kernel": "~3.4|~4.0",
+        "symfony/messenger": "~4.2",
+        "symfony/property-access": "~3.4|~4.0",
+        "symfony/property-info": "~3.4|~4.0",
+        "symfony/proxy-manager-bridge": "~3.4|~4.0",
+        "symfony/security": "~3.4|~4.0",
+        "symfony/expression-language": "~3.4|~4.0",
+        "symfony/validator": "~3.4|~4.0",
+        "symfony/translation": "~3.4|~4.0",
+        "doctrine/annotations": "~1.0",
+        "doctrine/cache": "~1.6",
+        "doctrine/data-fixtures": "1.0.*",
+        "doctrine/dbal": "~2.4",
+        "doctrine/orm": "^2.4.5",
+        "doctrine/reflection": "~1.0"
+    },
+    "conflict": {
+        "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+        "symfony/dependency-injection": "<3.4",
+        "symfony/messenger": "<4.2"
+    },
+    "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",
+    "extra": {
+        "branch-alias": {
+            "dev-master": "4.2-dev"
+        }
+    }
+}
diff --git a/src/Symfony/Bridge/Monolog/composer.json b/src/Symfony/Bridge/Monolog/composer.json
new file mode 100644
index 0000000..ce7fee4
--- /dev/null
+++ b/src/Symfony/Bridge/Monolog/composer.json
@@ -0,0 +1,52 @@
+{
+    "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.19",
+        "symfony/contracts": "^1.0",
+        "symfony/http-kernel": "~3.4|~4.0"
+    },
+    "require-dev": {
+        "symfony/console": "~3.4|~4.0",
+        "symfony/event-dispatcher": "~3.4|~4.0",
+        "symfony/security-core": "~3.4|~4.0",
+        "symfony/var-dumper": "~3.4|~4.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/event-dispatcher": "Needed when using log messages in console commands.",
+        "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",
+    "extra": {
+        "branch-alias": {
+            "dev-master": "4.2-dev"
+        }
+    }
+}
diff --git a/src/Symfony/Bridge/PhpUnit/composer.json b/src/Symfony/Bridge/PhpUnit/composer.json
new file mode 100644
index 0000000..4d72603
--- /dev/null
+++ b/src/Symfony/Bridge/PhpUnit/composer.json
@@ -0,0 +1,50 @@
+{
+    "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.3.3 EVEN ON LATEST SYMFONY VERSIONS TO ALLOW USING",
+        "php": "THIS BRIDGE WHEN TESTING LOWEST SYMFONY VERSIONS.",
+        "php": ">=5.3.3"
+    },
+    "suggest": {
+        "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader",
+        "ext-zip": "Zip support is required when using bin/simple-phpunit"
+    },
+    "conflict": {
+        "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
+    },
+    "autoload": {
+        "files": [ "bootstrap.php" ],
+        "psr-4": { "Symfony\\Bridge\\PhpUnit\\": "" },
+        "exclude-from-classmap": [
+            "/Tests/"
+        ]
+    },
+    "bin": [
+        "bin/simple-phpunit"
+    ],
+    "minimum-stability": "dev",
+    "extra": {
+        "branch-alias": {
+            "dev-master": "4.2-dev"
+        },
+        "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..648bf89
--- /dev/null
+++ b/src/Symfony/Bridge/ProxyManager/composer.json
@@ -0,0 +1,41 @@
+{
+    "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",
+        "symfony/dependency-injection": "~4.0",
+        "ocramius/proxy-manager": "~2.1"
+    },
+    "require-dev": {
+        "symfony/config": "~3.4|~4.0"
+    },
+    "conflict": {
+        "zendframework/zend-eventmanager": "2.6.0"
+    },
+    "autoload": {
+        "psr-4": { "Symfony\\Bridge\\ProxyManager\\": "" },
+        "exclude-from-classmap": [
+            "/Tests/"
+        ]
+    },
+    "minimum-stability": "dev",
+    "extra": {
+        "branch-alias": {
+            "dev-master": "4.2-dev"
+        }
+    }
+}
diff --git a/src/Symfony/Bridge/Twig/composer.json b/src/Symfony/Bridge/Twig/composer.json
new file mode 100644
index 0000000..ec23176
--- /dev/null
+++ b/src/Symfony/Bridge/Twig/composer.json
@@ -0,0 +1,76 @@
+{
+    "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/contracts": "^1.0.2",
+        "twig/twig": "^1.37.1|^2.6.2"
+    },
+    "require-dev": {
+        "symfony/asset": "~3.4|~4.0",
+        "symfony/dependency-injection": "~3.4|~4.0",
+        "symfony/finder": "~3.4|~4.0",
+        "symfony/form": "^4.2.3",
+        "symfony/http-foundation": "~3.4|~4.0",
+        "symfony/http-kernel": "~3.4|~4.0",
+        "symfony/polyfill-intl-icu": "~1.0",
+        "symfony/routing": "~3.4|~4.0",
+        "symfony/templating": "~3.4|~4.0",
+        "symfony/translation": "~4.2",
+        "symfony/yaml": "~3.4|~4.0",
+        "symfony/security": "~3.4|~4.0",
+        "symfony/security-acl": "~2.8|~3.0",
+        "symfony/stopwatch": "~3.4|~4.0",
+        "symfony/console": "~3.4|~4.0",
+        "symfony/var-dumper": "~3.4|~4.0",
+        "symfony/expression-language": "~3.4|~4.0",
+        "symfony/web-link": "~3.4|~4.0",
+        "symfony/workflow": "~3.4|~4.0"
+    },
+    "conflict": {
+        "symfony/console": "<3.4",
+        "symfony/form": "<4.2.3",
+        "symfony/translation": "<4.2"
+    },
+    "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": "For using the SecurityExtension",
+        "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",
+    "extra": {
+        "branch-alias": {
+            "dev-master": "4.2-dev"
+        }
+    }
+}
-- 
cgit