-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
57 lines (57 loc) · 1.65 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"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": {
"acquia/http-hmac-php": ">=3.4",
"ext-json": "*",
"php": ">=7.3",
"psr/log": ">=1.0",
"guzzlehttp/guzzle": ">=6.5",
"symfony/event-dispatcher": ">=4.4",
"symfony/http-foundation": ">=4.4",
"symfony/serializer": ">=4.4"
},
"require-dev": {
"drupal/coder": "dev-8.x-3.x",
"mockery/mockery": "^1.2",
"pdepend/pdepend": "~1.0",
"phploc/phploc": "~2.0",
"phpmd/phpmd": "~1.0",
"phpunit/phpunit": "^9",
"scrutinizer/ocular": "~1.0",
"sebastian/phpcpd": "~2.0",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.8",
"phpspec/prophecy-phpunit": "^2"
},
"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/"
}
},
"extra": {
"branch-alias": {
"dev-2.x": "2.x-dev"
}
}
}