create composer.json file

This commit is contained in:
Julien Fastré 2014-11-07 10:08:41 +01:00
parent 246577bc79
commit 735184d2fd

37
composer.json Normal file
View File

@ -0,0 +1,37 @@
{
"name": "chill-project/person",
"license": "AGPL-3.0",
"type": "symfony-bundle",
"description": "A bundle to deal with persons",
"keywords" : ["chill", "social work, persons"],
"homepage" : "https://github.com/Chill-project/Person",
"autoload": {
"psr-4": { "Chill\\PersonBundle\\": "" }
},
"authors" : [
{
"name": "Champs-Libres",
"email": "info@champs-libres.coop",
"homepage": "http://www.champs-libres.coop"
}
],
"require": {
"php": "~5.5",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"symfony/framework-bundle": "2.5.*",
"symfony/yaml": "2.5.*",
"symfony/symfony": "2.5.*",
"doctrine/dbal": "2.5.*@dev",
"doctrine/orm": "2.5.*@dev",
"doctrine/common": "2.4.*@dev",
"doctrine/doctrine-bundle": "~1.2@dev",
"chill-project/main": "*@dev"
},
"require-dev": {
"symfony/dom-crawler": "2.5",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"symfony/security": "~2.5"
}
}