1
0
mirror of synced 2024-12-04 18:56:06 +03:00
doctrine2/composer.json

49 lines
1.6 KiB
JSON
Raw Permalink Normal View History

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
],
"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": "*",
"doctrine/collections": "~1.2",
2013-09-12 10:00:08 +04:00
"doctrine/dbal": ">=2.5-dev,<2.6-dev",
"doctrine/instantiator": "~1.0.1",
"doctrine/common": ">=2.5-dev,<2.6-dev",
"doctrine/cache": "~1.4",
"symfony/console": "~2.5"
},
"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"
},
"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": {
"psr-0": { "Doctrine\\ORM\\": "lib/" }
},
"autoload-dev": {
"psr-0": { "Doctrine\\Tests\\": "tests/" }
},
"bin": ["bin/doctrine", "bin/doctrine.php"],
"extra": {
"branch-alias": {
"dev-master": "2.6.x-dev"
}
},
"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
}
}