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.
49 lines
1.0 KiB
49 lines
1.0 KiB
{ |
|
"name": "hauke/magallanes", |
|
"description": "The Deployment Tool for PHP Applications", |
|
"homepage": "https://magephp.com", |
|
"license": "MIT", |
|
"type": "library", |
|
"keywords": ["deployment"], |
|
"authors": [ |
|
{ |
|
"name": "Andrés Montañez", |
|
"email": "andresmontanez@gmail.com" |
|
}, |
|
{ |
|
"name": "Hauke Zühl", |
|
"email": "hzuehl@web.de" |
|
} |
|
], |
|
"require": { |
|
"php": "^7.2.5", |
|
"monolog/monolog": "~1.11||^2.0", |
|
"symfony/console": "^5.0", |
|
"symfony/filesystem": "^5.0", |
|
"symfony/event-dispatcher": "^5.0", |
|
"symfony/finder": "^5.0", |
|
"symfony/yaml": "^5.0", |
|
"symfony/process": "^5.0" |
|
}, |
|
"require-dev": { |
|
"phpunit/phpunit": "^7.0", |
|
"satooshi/php-coveralls": "^2.0" |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"Mage\\": "src/" |
|
} |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"Mage\\Tests\\": "tests/" |
|
} |
|
}, |
|
"bin": ["bin/mage"], |
|
"extra": { |
|
"branch-alias": { |
|
"dev-master": "4.0.x-dev", |
|
"dev-discovery-one": "4.x-dev" |
|
} |
|
} |
|
}
|
|
|