mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
956 B
45 lines
956 B
{
|
|
"name": "andres-montanez/magallanes",
|
|
"description": "The 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/event-dispatcher": "^3.0",
|
|
"symfony/finder": "^3.0",
|
|
"symfony/yaml": "^3.0",
|
|
"symfony/process": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "4.8.*",
|
|
"satooshi/php-coveralls": "~1.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Mage\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Mage\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"bin": ["bin/mage"],
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.0.x-dev",
|
|
"dev-nostromo": "3.x-dev"
|
|
}
|
|
}
|
|
}
|
|
|