forked from ovh/php-ovh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.09 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
{
"name": "ovh/ovh",
"description": "Wrapper for OVHcloud APIs",
"license": "BSD-3-Clause",
"config": {
"sort-packages": true,
"allow-plugins": {
"phpdocumentor/shim": true
}
},
"keywords": [
"api",
"client",
"authorization",
"authorisation",
"ovh",
"ovhcloud"
],
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^6.0||^7.0",
"ext-json": "*"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3.1",
"phpdocumentor/shim": "^3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {"Ovh\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"Ovh\\tests\\": "test/"
}
},
"scripts": {
"phpdoc": "vendor/bin/phpdoc",
"phpcs": "vendor/bin/phpcs -sp --colors",
"phpcbf": "vendor/bin/phpcbf -sp",
"parallel-lint": "vendor/bin/parallel-lint src tests",
"phpunit": "vendor/bin/phpunit --colors=always"
}
}