forked from myENA/cloudstack-php-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.42 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.42 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
{
"name": "myena/cloudstack-client-generator",
"type": "library",
"description": "PHP client library for the CloudStack User API",
"license": "MIT",
"authors": [
{
"name": "Quentin Pleplé",
"email": "quentin.pleple@gmail.com"
},
{
"name": "Aaron Hurt",
"email": "ahurt@anbcs.com"
},
{
"name": "Nathan Johnson",
"email": "nathan@nathanjohnson.info"
},
{
"name": "Daniel Carbone",
"email": "daniel.p.carbone@gmail.com"
},
{
"name": "Bogdan Gabor",
"email": "bgabor@ena.com"
},
{
"name": "Andrei Lupuleasa"
}
],
"autoload": {
"psr-4": {
"MyENA\\CloudStackClientGenerator\\": "src/"
},
"files": [
"files/constants.php",
"files/funcs.php"
]
},
"require": {
"php": "~7.1",
"ext-json": "*",
"ext-curl": "*",
"symfony/console": "^4.1",
"symfony/yaml": "^4.1",
"twig/twig": "^2.4",
"twig/extensions": "^1.5",
"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-cs phpcs:build -vvv",
"chmod +x build/php-cs.phar"
]
},
"bin": [
"bin/php-cs"
]
}