forked from acquia/content-hub-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.27 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
{
"name": "acquia/content-hub-php",
"type": "library",
"description": "A PHP Client library to consume the Acquia Content Hub API.",
"homepage": "https://github.com/acquia/content-hub-php",
"license": "MIT",
"authors": [
{
"name": "See Contributors",
"homepage": "https://github.com/acquia/content-hub-php/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/acquia/content-hub-php/issues"
},
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "~6.0",
"symfony/serializer": "~2.7|^3.2",
"symfony/http-foundation": "~2.7|^3.2"
},
"require-dev": {
"fabpot/php-cs-fixer": "~1.0",
"pdepend/pdepend": "~1.0",
"phploc/phploc": "~2.0",
"phpmd/phpmd": "~1.0",
"phpunit/phpunit": ">=4.8.35 <5",
"scrutinizer/ocular": "~1.0",
"sebastian/phpcpd": "~2.0"
},
"suggest": {
"ramsey/uuid": "A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID)"
},
"autoload": {
"psr-4": {
"Acquia\\ContentHubClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acquia\\ContentHubClient\\": "test/"
}
}
}