magallanes/composer.json

36 lines
788 B
JSON
Raw Normal View History

2016-12-31 07:52:25 +01:00
{
"name": "andres-montanez/magallanes",
"description": "A Deployment Tool for PHP Applications",
"homepage": "http://magephp.com",
"license": "MIT",
"type": "library",
"keywords": ["deployment"],
"authors": [
{
"name": "Andrés Montañez",
"email": "andresmontanez@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"monolog/monolog": "^1.0",
"symfony/console": "^3.0",
"symfony/filesystem": "^3.0",
"symfony/finder": "^3.0",
"symfony/yaml": "^3.0",
"symfony/process": "^3.0"
},
"autoload": {
"psr-4": {
"Symfony\\Component\\": "src/Symfony/Component/"
},
"psr-0": { "": "src/" },
"exclude-from-classmap": [
"**/Tests/"
]
2016-12-31 07:56:37 +01:00
},
2016-12-31 08:22:10 +01:00
"config": {
2016-12-31 07:56:37 +01:00
"bin-dir": "bin"
},
2016-12-31 08:22:10 +01:00
"bin": ["bin/mage"]
2016-12-31 07:52:25 +01:00
}