2011-10-10 18:30:49 +04:00
|
|
|
{
|
|
|
|
"name": "doctrine/orm",
|
2013-05-27 23:47:16 +04:00
|
|
|
"type": "library",
|
2011-10-10 18:30:49 +04:00
|
|
|
"description": "Object-Relational-Mapper for PHP",
|
|
|
|
"keywords": ["orm", "database"],
|
|
|
|
"homepage": "http://www.doctrine-project.org",
|
2012-05-26 20:15:48 +04:00
|
|
|
"license": "MIT",
|
2011-10-10 18:30:49 +04:00
|
|
|
"authors": [
|
2011-10-10 18:54:57 +04:00
|
|
|
{"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"}
|
2011-10-10 18:30:49 +04:00
|
|
|
],
|
2013-02-05 00:30:32 +04:00
|
|
|
"minimum-stability": "dev",
|
2011-10-10 18:30:49 +04:00
|
|
|
"require": {
|
2015-01-14 22:02:48 +03:00
|
|
|
"php": ">=5.4",
|
2011-10-10 18:54:57 +04:00
|
|
|
"ext-pdo": "*",
|
2014-02-05 14:20:00 +04:00
|
|
|
"doctrine/collections": "~1.2",
|
2013-09-12 10:00:08 +04:00
|
|
|
"doctrine/dbal": ">=2.5-dev,<2.6-dev",
|
2014-08-14 18:55:32 +04:00
|
|
|
"doctrine/instantiator": "~1.0.1",
|
2014-11-11 17:52:51 +03:00
|
|
|
"doctrine/common": ">=2.5-dev,<2.6-dev",
|
2015-01-17 12:09:13 +03:00
|
|
|
"doctrine/cache": "~1.4",
|
2014-12-04 15:42:38 +03:00
|
|
|
"symfony/console": "~2.5"
|
2012-05-22 22:26:03 +04:00
|
|
|
},
|
2013-05-02 01:10:13 +04:00
|
|
|
"require-dev": {
|
2014-03-01 21:32:56 +04:00
|
|
|
"symfony/yaml": "~2.1",
|
2014-04-17 05:22:17 +04:00
|
|
|
"phpunit/phpunit": "~4.0",
|
2013-06-28 04:18:21 +04:00
|
|
|
"satooshi/php-coveralls": "dev-master"
|
2013-05-02 01:10:13 +04:00
|
|
|
},
|
2012-05-22 22:26:03 +04:00
|
|
|
"suggest": {
|
2012-06-12 18:43:38 +04:00
|
|
|
"symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
|
2011-11-01 18:05:38 +04:00
|
|
|
},
|
|
|
|
"autoload": {
|
2012-09-28 10:58:38 +04:00
|
|
|
"psr-0": { "Doctrine\\ORM\\": "lib/" }
|
2012-05-20 23:33:56 +04:00
|
|
|
},
|
2015-01-10 23:28:57 +03:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-0": { "Doctrine\\Tests\\": "tests/" }
|
|
|
|
},
|
2012-05-22 22:26:03 +04:00
|
|
|
"bin": ["bin/doctrine", "bin/doctrine.php"],
|
2012-05-20 23:33:56 +04:00
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2015-04-02 23:40:05 +03:00
|
|
|
"dev-master": "2.6.x-dev"
|
2012-05-20 23:33:56 +04:00
|
|
|
}
|
2013-09-07 14:56:49 +04:00
|
|
|
},
|
|
|
|
"archive": {
|
2013-09-07 20:27:20 +04:00
|
|
|
"exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar", "vendor/satooshi", "lib/vendor", "*.swp", "*coveralls.yml"]
|
2011-10-10 18:30:49 +04:00
|
|
|
}
|
|
|
|
}
|