-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 917 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 917 Bytes
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": "transip/tipctl",
"description": "TransIP REST API CLI client",
"license": "Apache-2.0",
"authors": [
{
"name": "TransIP",
"email": "support@transip.eu"
}
],
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"require": {
"php": "^7.2.5|^8.0",
"ext-json": "*",
"symfony/console": "^5.4",
"symfony/finder": "^5.4",
"symfony/filesystem": "^5.4",
"transip/transip-api-php": "^6.48",
"symfony/yaml": "^5.4",
"symfony/cache": "^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^1.5",
"rector/rector": "^0.12"
},
"autoload": {
"psr-4": {
"Transip\\Api\\CLI\\": "src"
}
},
"bin": [
"bin/tipctl"
]
}