-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
60 lines (60 loc) · 1.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "hypernode/deploy",
"description": "Hypernode Deploy",
"type": "application",
"license": "MIT",
"bin": [
"bin/hypernode-deploy.php",
"bin/hypernode-deploy"
],
"require": {
"ext-json": "*",
"ext-pcntl": "*",
"ext-zlib": "*",
"composer-runtime-api": "^2",
"deployer/deployer": "v7.4.0",
"doctrine/annotations": "^1.6",
"guzzlehttp/guzzle": "^7.5",
"hypernode/api-client": "^0.4",
"hypernode/deploy-configuration": "^3.2",
"php-di/php-di": "^6.0",
"psr/log": "^1.0",
"symfony/console": "^5.4",
"symfony/finder": "^5.4",
"symfony/http-client": "^5.4",
"symfony/process": "^5.4",
"twig/twig": "^2.12",
"webmozart/assert": "^1.11"
},
"autoload": {
"psr-4": {
"Hypernode\\Deploy\\": "src/"
},
"files": [
"src/Deployer/functions.php"
]
},
"require-dev": {
"phpro/grumphp-shim": "^1.13",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^4.26"
},
"config": {
"preferred-install": {
"hypernode/*": "source"
},
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true,
"php-http/discovery": true
}
},
"repositories": {
"deployer-fork": {
"type": "vcs",
"url": "https://github.com/ByteInternet/deployer"
}
}
}