chill-bundles/composer.json
2017-06-22 22:01:37 +02:00

57 lines
2.0 KiB
JSON

{
"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.6|~7",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/monolog-bundle": "^2.7",
"symfony/yaml": "~2.7",
"symfony/symfony": "~2.8",
"doctrine/dbal": "~2.5",
"doctrine/orm": "~2.4",
"doctrine/common": "~2.4",
"doctrine/doctrine-bundle": "~1.2",
"chill-project/main": "dev-master",
"chill-project/custom-fields": "dev-master@dev",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"champs-libres/composer-bundle-migration": "~1.0",
"doctrine/doctrine-migrations-bundle": "~1.1",
"doctrine/migrations": "~1.0",
"phpoffice/phpspreadsheet": "dev-develop#9e835676a6a2df9f7e445a28d4d89f6bd296a7c5@dev"
},
"require-dev": {
"symfony/phpunit-bridge": "^2.7",
"fzaninotto/faker": "~1",
"phpunit/phpunit": "~5.0"
},
"scripts": {
"post-install-cmd": [
"ComposerBundleMigration\\Composer\\Migrations::synchronizeMigrations",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
],
"post-update-cmd": [
"ComposerBundleMigration\\Composer\\Migrations::synchronizeMigrations",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
]
},
"extra": {
"app-migrations-dir": "Tests/Fixtures/App/app/DoctrineMigrations",
"symfony-app-dir": "Tests/Fixtures/App/"
}
}