-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathcomposer.json
33 lines (33 loc) · 888 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
{
"name": "banago/phploy",
"description": "PHPloy - Incremental Git (S)FTP deployment tool that supports submodules, multiple servers and rollbacks.",
"license": "MIT",
"keywords": ["deploy", "ftp", "sftp", "git"],
"authors": [
{
"name": "Baki Goxhaj",
"email": "[email protected]",
"homepage": "http://wplancer.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"league/climate": "^3.0",
"league/flysystem": "^1.0",
"league/flysystem-sftp": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"teqneers/php-stream-wrapper-for-git": ">=1.0.1 <2"
},
"autoload": {
"psr-4": {
"Banago\\PHPloy\\": "src"
},
"files": [
"src/utils.php"
]
},
"bin": ["bin/phploy"]
}