magallanes/composer.json

53 lines
1.3 KiB
JSON
Raw Normal View History

2013-06-23 01:30:32 +02:00
{
2016-03-02 20:33:58 +01:00
"name": "cyberhouse/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",
2016-03-02 20:33:58 +01:00
"authors": [
{
"name": "Andrés Montañez",
"role": "Developer"
},
{
"name": "Johannes Pichler",
"email": "johannes.pichler@cyberhouse.at",
"homepage": "https://www.cyberhouse.at",
"role": "Developer"
},
{
"name": "Georg Großberger",
"email": "georg.grossberger@cyberhouse.ats",
"homepage": "https://www.cyberhouse.at",
"role": "Developer"
}
],
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": {
2015-02-14 13:33:42 +01:00
"phpunit/phpunit": "4.3.5",
"satooshi/php-coveralls": ">=0.6.1",
"malkusch/php-mock": "dev-php-5.3"
},
"autoload": {
"psr-4": {
"Mage\\": "./Mage",
"Task\\": [".mage/tasks", "../../../.mage/tasks"],
"Command\\": [".mage/tasks", "../../../.mage/commands"]
}
},
"autoload-dev": {
"psr-4": {
"MageTest\\": "./tests/MageTest"
}
},
2014-12-02 19:44:43 +01:00
"config": {
"bin-dir": "bin"
},
"bin": [
"bin/mage"
]
}