-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.36 KB
/
Copy pathcomposer.json
File metadata and controls
96 lines (96 loc) · 2.36 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "loadinglucian/deployer-php",
"description": "Server and site deployment tool for PHP",
"type": "library",
"keywords": [
"deployment",
"server",
"automation",
"devops"
],
"license": "MIT",
"authors": [
{
"name": "Lucian Văcăroiu",
"email": "silviulucian@gmail.com"
}
],
"require": {
"php": "^8.2",
"ext-pcntl": "*",
"aws/aws-sdk-php": "^3.379",
"guzzlehttp/guzzle": "^7.10",
"jeremykendall/php-domain-parser": "^6.4",
"laravel/prompts": "^0.3.17",
"phpseclib/phpseclib": "^3.0",
"symfony/console": "^7.4",
"symfony/dotenv": "^7.4",
"symfony/filesystem": "^7.4",
"symfony/yaml": "^7.4",
"toin0u/digitalocean-v2": "^5.0"
},
"require-dev": {
"laravel/pint": "^1.29",
"pestphp/pest": "^2.36",
"pestphp/pest-plugin-arch": "^2.7",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.4"
},
"autoload": {
"psr-4": {
"DeployerPHP\\": "app"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"bin": [
"bin/deployer"
],
"scripts": {
"pall": [
"composer pint && composer pstan && composer rect && composer pest"
],
"pest": [
"vendor/bin/pest --parallel --coverage --coverage-text"
],
"pint": [
"vendor/bin/pint --parallel"
],
"pstan": [
"vendor/bin/phpstan analyse --memory-limit=2G"
],
"rect": [
"vendor/bin/rector process"
],
"bash": [
"shfmt -i 0 -bn -ci -sr -w playbooks/*.sh"
],
"bash:check": [
"shfmt -i 0 -bn -ci -sr -d playbooks/*.sh"
],
"bats": [
"./bats.sh run"
],
"bats:start": [
"./bats.sh start"
],
"bats:stop": [
"./bats.sh stop"
]
},
"config": {
"process-timeout": 900,
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}