forked from deployphp/deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.04 KB
/
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
43
44
{
"name": "deployer/deployer",
"description": "Deployment Tool",
"license": "MIT",
"homepage": "https://deployer.org",
"support": {
"issues": "https://github.com/deployphp/deployer/issues",
"source": "https://github.com/deployphp/deployer",
"docs": "https://deployer.org/docs"
},
"authors": [
{
"name": "Anton Medvedev",
"email": "anton@medv.io"
}
],
"autoload": {
"psr-4": {
"Deployer\\": "src/"
},
"files": [
"src/Support/helpers.php",
"src/functions.php"
]
},
"bin": [
"bin/dep"
],
"require": {
"php": "~7.0",
"deployer/phar-update": "~2.0",
"pimple/pimple": "~3.0",
"symfony/console": "~2.7|~3.0",
"symfony/finder": "~2.7|~3.0",
"symfony/process": "~2.7|~3.0",
"symfony/yaml": "~2.7|~3.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0"
},
"config": {
"sort-packages": true
}
}