magallanes/composer.json

28 lines
583 B
JSON
Raw Normal View History

2013-06-23 01:30:32 +02:00
{
2013-06-23 20:26:25 +02:00
"name": "andres-montanez/magallanes",
2013-06-23 01:30:32 +02:00
"description": "A Deployment Tool for PHP Applications",
"homepage": "http://magephp.com",
2013-06-23 20:26:25 +02:00
"license": "MIT",
2013-06-23 01:30:32 +02:00
"type": "library",
2013-12-18 02:42:06 +01:00
"keywords": ["deployment"],
2013-06-23 01:30:32 +02:00
"require": {
2013-06-23 20:30:09 +02:00
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "4.3.5"
},
"autoload": {
"psr-4": {
"Mage\\": "./Mage",
"Task\\": ".mage/tasks",
"Command\\": ".mage/commands"
}
},
2014-12-02 19:44:43 +01:00
"config": {
"bin-dir": "bin"
},
"bin": [
"bin/mage"
]
}