forked from grayfolk/digitalocean-api-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.27 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
{
"name": "grayfolk/digitalocean-api-shell",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-gmp": "*",
"ext-json": "*",
"badcow/dns": "^4.1",
"cakephp/chronos": "^2.2",
"guzzlehttp/guzzle": "^7.2",
"http-interop/http-factory-guzzle": "^1.0",
"league/climate": "^3.7",
"toin0u/digitalocean-v2": "^4.3",
"yiisoft/arrays": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0"
},
"authors": [
{
"name": "Vladimir Protsenko",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"ln -sf src/digitalocean-api-shell.sh do",
"chmod +x do",
"mkdir -m=777 -p tmp",
"cp -n accounts.json.example accounts.json"
],
"cs:check": "php-cs-fixer fix --verbose --ansi --show-progress=dots --diff --dry-run --config .php-cs.php",
"cs:fix": "php-cs-fixer fix --verbose --ansi --show-progress=dots --config .php-cs.php"
}
}