forked from deployphp/deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.83 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
61
62
63
64
65
66
67
68
69
{
"name": "deployer/deployer",
"description": "Deployment Tool",
"license": "MIT",
"homepage": "https://deployer.org",
"support": {
"docs": "https://deployer.org/docs",
"source": "https://github.com/deployphp/deployer",
"issues": "https://github.com/deployphp/deployer/issues"
},
"authors": [
{
"name": "Anton Medvedev",
"email": "[email protected]"
}
],
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/deployer"
},
{
"type": "github",
"url": "https://github.com/sponsors/antonmedv"
}
],
"autoload": {
"psr-4": {
"Deployer\\": "src/"
},
"files": [
"src/Support/helpers.php",
"src/functions.php"
]
},
"scripts": {
"dep": "bin/dep -f deploy.yaml",
"release": "@dep release",
"test": "pest",
"test:e2e": "pest --config tests/e2e/phpunit-e2e.xml",
"phpcs": "phpcs",
"phpstan": "phpstan analyse -c phpstan.neon",
"phpstan:baseline": "@phpstan --generate-baseline tests/phpstan-baseline.neon"
},
"bin": [
"bin/dep"
],
"require": {
"marcj/topsort": "^2.0",
"psr/http-message": "^1",
"react/http": "^1",
"symfony/console": "^5",
"symfony/polyfill-php80": "^1.22",
"symfony/process": "^5",
"symfony/yaml": "^5"
},
"require-dev": {
"pestphp/pest": "^1.0",
"phpstan/phpstan": "^0.12.53",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.3",
"slevomat/coding-standard": "^6.4",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"sort-packages": true,
"process-timeout": 0
}
}