Merge pull request #338 from gharlan/psr-4

Use PSR-4
This commit is contained in:
Toni Uebernickel 2015-06-10 20:37:54 +02:00
commit e3903ffad3

View file

@ -1,24 +1,23 @@
{ {
"name": "propel/propel-bundle", "name": "propel/propel-bundle",
"description": "Integration of Propel in Symfony2", "description": "Integration of Propel in Symfony2",
"keywords": ["propel", "orm", "persistence"], "keywords": ["propel", "orm", "persistence"],
"type": "symfony-bundle", "type": "symfony-bundle",
"license": "MIT", "license": "MIT",
"authors": [{ "authors": [{
"name": "William Durand", "name": "William Durand",
"email": "william.durand1@gmail.com" "email": "william.durand1@gmail.com"
}], }],
"require": { "require": {
"symfony/symfony": "~2.5", "symfony/symfony": "~2.5",
"propel/propel": "2.*@dev" "propel/propel": "2.*@dev"
}, },
"require-dev": { "require-dev": {
"sensio/framework-extra-bundle": "~3.0", "sensio/framework-extra-bundle": "~3.0",
"phpunit/phpunit": "~4.0", "phpunit/phpunit": "~4.0",
"fzaninotto/faker": "~1.1" "fzaninotto/faker": "~1.1"
}, },
"autoload": { "autoload": {
"psr-0": { "Propel\\PropelBundle": "" } "psr-4": { "Propel\\PropelBundle\\": "" }
}, }
"target-dir": "Propel/PropelBundle"
} }