forked from Lusitaniae/cloudflarephpsdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.13 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": "d8-contrib-modules/cloudflarephpsdk",
"type": "library",
"description": "PHP client for interacting with CloudFlare's SDK. CloudFlare is a copyright of CloudFlare, Inc. The authors of this tool has no association with CloudFlare, Inc.",
"keywords": ["CloudFlare", "Cloud Flare", "framework", "rest", "web service", "curl", "client", "HTTP client"],
"homepage": "https://github.com/d8-contrib-modules/cloudflarephpsdk",
"license": "GPL-2.0+",
"authors": [
{
"name": "Adam Weingarten",
"email": "[email protected]",
"homepage": "https://github.com/aweingarten"
}
],
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "~6.1"
},
"require-dev": {
"drupal/coder": "8.2.*",
"phploc/phploc": "2.0.*@dev",
"sebastian/phpcpd": "2.0.*@dev",
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "2.*",
"pdepend/pdepend": "1.1.*",
"phing/phing": "2.11.*",
"phpmd/phpmd": "1.*"
},
"autoload": {
"psr-4": {
"CloudFlarePhpSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CloudFlarePhpSdk\\Tests\\": "tests/"
}
}
}