1
0
mirror of synced 2025-02-02 21:41:45 +03:00
doctrine2/composer.json

53 lines
1.7 KiB
JSON
Raw Normal View History

2011-10-10 16:30:49 +02:00
{
"name": "doctrine/orm",
2013-05-27 21:47:16 +02:00
"type": "library",
2011-10-10 16:30:49 +02:00
"description": "Object-Relational-Mapper for PHP",
"keywords": ["orm", "database"],
"homepage": "http://www.doctrine-project.org",
2012-05-26 19:15:48 +03:00
"license": "MIT",
2011-10-10 16:30:49 +02:00
"authors": [
2011-10-10 16:54:57 +02:00
{"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
{"name": "Roman Borschel", "email": "roman@code-factory.org"},
{"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
2015-12-29 16:46:59 +01:00
{"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
{"name": "Marco Pivetta", "email": "ocramius@gmail.com"}
2011-10-10 16:30:49 +02:00
],
"minimum-stability": "dev",
2011-10-10 16:30:49 +02:00
"require": {
2017-06-19 11:17:25 +02:00
"php": "^7.1",
2011-10-10 16:54:57 +02:00
"ext-pdo": "*",
"doctrine/collections": "^1.4",
"doctrine/dbal": ">=2.5-dev,<2.7-dev",
2017-07-22 19:30:47 +02:00
"doctrine/instantiator": "~1.1",
"doctrine/common": "^2.7.1",
2017-06-19 11:17:44 +02:00
"doctrine/cache": "~1.6",
"doctrine/annotations": "~1.4",
"symfony/console": "~3.0|~4.0"
},
"require-dev": {
"symfony/yaml": "~3.4|~4.0",
2017-03-31 17:20:10 +01:00
"phpunit/phpunit": "^6.0"
},
"suggest": {
2012-06-12 09:43:38 -05:00
"symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
2011-11-01 15:05:38 +01:00
},
"autoload": {
2015-07-08 01:51:09 +02:00
"psr-4": { "Doctrine\\ORM\\": "lib/Doctrine/ORM" }
},
"autoload-dev": {
2016-05-26 20:17:56 +02:00
"psr-4": {
"Doctrine\\Tests\\": "tests/Doctrine/Tests",
"Doctrine\\Performance\\": "tests/Doctrine/Performance"
}
},
"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"]
2011-10-10 16:30:49 +02:00
}
}