-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.11 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
{
"name": "nexylan/cloudflare-host-gw",
"description": "A PHP sdk to communicate with CloudFlare Hosting Provider API",
"keywords": ["CloudFlare", "API", "SDK", "Hosting Provider"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sullivan SENECHAL",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^1.7 || ^2.0",
"php-http/discovery": "^1.4"
},
"require-dev": {
"php-http/mock-client": "^1.1",
"php-http/message": "^1.6",
"php-http/httplug-bundle": "^1.8"
},
"suggest": {
"php-http/httplug-bundle": "For Symfony integration as bundle"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": { "Nexy\\CloudFlareHostGW\\": "src" }
},
"autoload-dev": {
"psr-4": { "Nexy\\CloudFlareHostGW\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}