-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.47 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "hikingyo/php-ovh-api",
"description": "Ovh API client for PHP",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Hikingyo\\Ovh\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hikingyo\\Ovh\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Hikingyo",
"email": "hikingyo@hikingyo.com"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"guzzlehttp/guzzle": "^7.4",
"http-interop/http-factory-guzzle": "^1.2",
"phpmetrics/phpmetrics": "^2.8",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5 | ^10.0",
"rector/rector": "^0.12.19",
"timeweb/phpstan-enum": "^3.0"
},
"require": {
"php": "^7.4.15 || ^8.0.2",
"ext-json": "*",
"myclabs/php-enum": "^1.8",
"php-http/client-common": "^2.5",
"php-http/discovery": "^1.14",
"php-http/httplug": "^2.3",
"php-http/message": "^1.13",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0",
"symfony/options-resolver": "^5.4",
"symfony/polyfill-php81": "^1.25"
},
"config": {
"sort-packages": true,
"lock": false,
"allow-plugins": true
}
}