summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json39
1 files changed, 24 insertions, 15 deletions
diff --git a/composer.json b/composer.json
index a2ec7ce..5f40e2a 100644
--- a/composer.json
+++ b/composer.json
@@ -9,39 +9,48 @@
{"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
{"name": "Roman Borschel", "email": "roman@code-factory.org"},
{"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
- {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
+ {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
+ {"name": "Marco Pivetta", "email": "ocramius@gmail.com"}
],
- "minimum-stability": "dev",
+ "config": {
+ "sort-packages": true
+ },
"require": {
- "php": ">=5.4",
+ "php": "^7.1",
"ext-pdo": "*",
- "doctrine/collections": "~1.2",
- "doctrine/dbal": ">=2.5-dev,<2.7-dev",
- "doctrine/instantiator": "^1.0.1",
- "doctrine/common": ">=2.5-dev,<2.9-dev",
- "doctrine/cache": "~1.4",
- "symfony/console": "~2.5|~3.0|~4.0"
+ "doctrine/annotations": "~1.5",
+ "doctrine/cache": "~1.6",
+ "doctrine/collections": "^1.4",
+ "doctrine/common": "^2.7.1",
+ "doctrine/dbal": "^2.6",
+ "doctrine/instantiator": "~1.1",
+ "symfony/console": "~3.0|~4.0"
},
"require-dev": {
- "symfony/yaml": "~2.3|~3.0|~4.0",
- "phpunit/phpunit": "~4.0"
+ "doctrine/coding-standard": "^1.0",
+ "phpunit/phpunit": "^6.5",
+ "squizlabs/php_codesniffer": "^3.2",
+ "symfony/yaml": "~3.4|~4.0"
},
"suggest": {
"symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
},
"autoload": {
- "psr-0": { "Doctrine\\ORM\\": "lib/" }
+ "psr-4": { "Doctrine\\ORM\\": "lib/Doctrine/ORM" }
},
"autoload-dev": {
- "psr-0": { "Doctrine\\Tests\\": "tests/" }
+ "psr-4": {
+ "Doctrine\\Tests\\": "tests/Doctrine/Tests",
+ "Doctrine\\Performance\\": "tests/Doctrine/Performance"
+ }
},
- "bin": ["bin/doctrine", "bin/doctrine.php"],
+ "bin": ["bin/doctrine"],
"extra": {
"branch-alias": {
"dev-master": "2.6.x-dev"
}
},
"archive": {
- "exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar", "vendor/satooshi", "lib/vendor", "*.swp", "*coveralls.yml"]
+ "exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar", "vendor/satooshi", "lib/vendor", "*.swp"]
}
}