forked from qpleple/cloudstack-php-client
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
65 lines (65 loc) · 1.48 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
{
"name": "myena/cloudstack-client-generator",
"type": "library",
"description": "PHP client library for the CloudStack User API",
"license": "MIT",
"authors": [
{
"name": "Quentin Pleplé",
"email": "[email protected]"
},
{
"name": "Aaron Hurt",
"email": "[email protected]"
},
{
"name": "Nathan Johnson",
"email": "[email protected]"
},
{
"name": "Daniel Carbone",
"email": "[email protected]"
},
{
"name": "Bogdan Gabor",
"email": "[email protected]"
},
{
"name": "Andrei Lupuleasa"
}
],
"autoload": {
"psr-4": {
"MyENA\\CloudStackClientGenerator\\": "src/"
},
"files": [
"files/constants.php",
"files/funcs.php"
]
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"ext-curl": "*",
"symfony/console": "^5.0",
"symfony/yaml": "^5.0",
"twig/twig": "^3.0",
"twig/string-extra": "~v3.0",
"psr/log": "^1.0",
"guzzlehttp/psr7": "^1.4",
"guzzlehttp/guzzle": "^6.3",
"justinrainbow/json-schema": "~5.2",
"dcarbone/gotime": "0.3.*"
},
"scripts": {
"build": [
"rm -rf vendor",
"composer install --no-interaction --no-dev --no-progress --no-suggest --optimize-autoloader --profile",
"/usr/bin/env php ./bin/php-cloudstack-generator cs-gen:build -vvv",
"chmod +x build/php-cloudstack-generator.phar"
]
},
"bin": [
"bin/php-cloudstack-generator"
]
}