-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
39 lines (39 loc) · 1.03 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
{
"name": "pcextreme/cloudstack",
"description": "Cloudstack PHP Client",
"keywords": ["pcextreme", "cloudstack", "php"],
"homepage": "https://github.com/pcextreme/cloudstack-php",
"license": "MIT",
"authors": [
{
"name": "Kevin Dierkx",
"email": "kevin@pcextreme.nl"
}
],
"require": {
"php": ">=7.1.0",
"guzzlehttp/guzzle": "~6.0",
"symfony/console": "^3.0 || ^4.0",
"symfony/cache": "^3.0 || ^4.0"
},
"require-dev": {
"infection/infection": "^0.10.5",
"mockery/mockery": "~0.9",
"phpstan/phpstan": "^0.10.3",
"phpunit/phpunit": "~5.0",
"satooshi/php-coveralls": "^2.0",
"squizlabs/php_codesniffer": "~3.3"
},
"autoload": {
"psr-4": {
"PCextreme\\Cloudstack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PCextreme\\Cloudstack\\Test\\": "test/src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}