magallanes/composer.json

46 lines
956 B
JSON
Raw Normal View History

2016-12-31 07:52:25 +01:00
{
"name": "andres-montanez/magallanes",
2017-01-31 04:56:33 +01:00
"description": "The Deployment Tool for PHP Applications",
2016-12-31 07:52:25 +01:00
"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",
2017-01-01 05:59:30 +01:00
"symfony/event-dispatcher": "^3.0",
2016-12-31 07:52:25 +01:00
"symfony/finder": "^3.0",
"symfony/yaml": "^3.0",
"symfony/process": "^3.0"
},
2017-01-01 05:28:58 +01:00
"require-dev": {
"phpunit/phpunit": "4.8.*",
2017-01-01 06:33:57 +01:00
"satooshi/php-coveralls": "~1.0"
2017-01-01 05:28:58 +01:00
},
2016-12-31 07:52:25 +01:00
"autoload": {
"psr-4": {
2017-01-10 13:31:57 +01:00
"Mage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mage\\Tests\\": "tests/"
}
2016-12-31 07:56:37 +01:00
},
2017-01-08 05:46:19 +01:00
"bin": ["bin/mage"],
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev",
"dev-nostromo": "3.x-dev"
}
}
2016-12-31 08:32:47 +01:00
}