deployer/composer.json

32 lines
572 B
JSON
Raw Normal View History

2013-07-11 15:47:09 +04:00
{
"name": "elfet/deployer",
"description": "Deployment Tool",
"license": "MIT",
"authors": [
{
"name": "Elfet",
"email": "anton@elfet.ru"
}
],
"autoload": {
"psr-4": {
"Deployer\\": "src/"
},
"files": [
"src/functions.php"
]
2013-07-11 15:47:09 +04:00
},
"bin": [
"bin/dep"
],
2013-07-11 15:47:09 +04:00
"require": {
"php": ">=5.4.0",
"symfony/finder": "~2.5",
"symfony/console": "~2.5"
2013-07-11 15:47:09 +04:00
},
"require-dev": {
"phpunit/phpunit": "~3.7"
2013-07-11 15:47:09 +04:00
}
}