summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json73
1 files changed, 73 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..9ad06ef
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,73 @@
+{
+ "name": "doctrine/doctrine-bundle",
+ "type": "symfony-bundle",
+ "description": "Symfony DoctrineBundle",
+ "keywords": ["DBAL", "ORM", "Database", "Persistence"],
+ "homepage": "http://www.doctrine-project.org",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "http://symfony.com/contributors"
+ },
+ {
+ "name": "Doctrine Project",
+ "homepage": "http://www.doctrine-project.org/"
+ }
+ ],
+ "require": {
+ "php": "^7.1",
+ "doctrine/dbal": "^2.5.12",
+ "doctrine/doctrine-cache-bundle": "~1.2",
+ "jdorn/sql-formatter": "^1.2.16",
+ "symfony/config": "^3.4.30|^4.3.3",
+ "symfony/console": "^3.4.30|^4.3.3",
+ "symfony/dependency-injection": "^3.4.30|^4.3.3",
+ "symfony/doctrine-bridge": "^3.4.30|^4.3.3",
+ "symfony/framework-bundle": "^3.4.30|^4.3.3"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^6.0",
+ "doctrine/orm": "^2.6",
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^7.5",
+ "symfony/cache": "^3.4.30|^4.3.3",
+ "symfony/phpunit-bridge": "^4.2",
+ "symfony/property-info": "^3.4.30|^4.3.3",
+ "symfony/twig-bridge": "^3.4|^4.1",
+ "symfony/validator": "^3.4.30|^4.3.3",
+ "symfony/web-profiler-bundle": "^3.4.30|^4.3.3",
+ "symfony/yaml": "^3.4.30|^4.3.3",
+ "twig/twig": "^1.34|^2.12"
+ },
+ "config": {
+ "sort-packages": true
+ },
+ "conflict": {
+ "doctrine/orm": "<2.6",
+ "twig/twig": "<1.34|>=2.0,<2.4"
+ },
+ "suggest": {
+ "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
+ "symfony/web-profiler-bundle": "To use the data collector."
+ },
+ "autoload": {
+ "psr-4": { "Doctrine\\Bundle\\DoctrineBundle\\": "" }
+ },
+ "autoload-dev": {
+ "psr-4": { "": "Tests/DependencyInjection" }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.12.x-dev"
+ }
+ }
+}