propel-bundle/composer.json

41 lines
927 B
JSON
Raw Normal View History

2011-11-12 01:31:25 +01:00
{
"name": "propel/propel-bundle",
"description": "Integration of Propel in Symfony2",
"keywords": ["propel", "orm", "persistence"],
"type": "symfony-bundle",
"license": "MIT",
2012-04-05 09:17:06 +02:00
"authors": [{
"name": "William Durand",
"email": "william.durand1@gmail.com"
}],
"autoload": {
"psr-4": { "Propel\\Bundle\\PropelBundle\\": "" },
"files": ["autoload_aliases.php"],
2016-01-23 11:47:47 +01:00
"exclude-from-classmap": [ "Tests/" ]
},
2011-11-12 01:31:25 +01:00
"require": {
"propel/propel1": "^1.6.8",
"symfony/framework-bundle": "^2.8.2"
2011-11-12 01:31:25 +01:00
},
"require-dev": {
"phpunit/phpunit": "^4.8.21|^5.0.10",
"symfony/symfony": "^2.8.2",
2016-01-22 18:41:07 +01:00
"sensio/framework-extra-bundle": "^3.0.2",
"fzaninotto/faker": "^1.5"
},
"conflict": {
"symfony/propel1-bridge": ">=2.8.0"
},
"replace": {
"symfony/propel1-bridge": "<=2.8.0"
},
"suggest": {
"propel/propel-acl-bundle": "For using the Propel ACL implementation"
}
2011-11-12 01:31:25 +01:00
}