-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 891 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "antwerpes/a-deployer",
"description": "A-Deployer - (S)FTP deployment tool written in PHP using Git to find out what to deploy.",
"keywords": [
"deployment",
"deploy",
"ftp",
"sftp",
"git",
"server"
],
"homepage": "https://github.com/Schnoop/a-deployer",
"license": "MIT",
"require": {
"php": ">=5.6",
"league/flysystem": "^1.0",
"league/flysystem-sftp": "^1.0",
"symfony/console": "^3.0",
"sebastian/git": "^2.1",
"pimple/pimple": "^3.0"
},
"autoload": {
"psr-4": {
"Antwerpes\\ADeployer\\": "src/"
}
},
"authors": [
{
"name": "Thorsten Daners",
"email": "[email protected]",
"role": "Developer"
}
],
"require-dev": {
"phpunit/phpunit": "^5.3",
"satooshi/php-coveralls": "^1.0",
"mockery/mockery": "^0.9.4"
},
"bin": [
"bin/a-deployer"
]
}