-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
44 lines (44 loc) · 1.12 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": "markup/contentful",
"description": "A client library to integrate with the Contentful APIs (Content Delivery and Content Management) for PHP 5.6+.",
"keywords": ["contentful", "cms"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Douglas Greenshields",
"email": "[email protected]"
},
{
"name": "Markup",
"homepage": "http://www.usemarkup.com/"
}
],
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^6",
"guzzlehttp/promises": "^1.1",
"psr/cache": "~1.0.0",
"psr/http-message": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"mockery/mockery": "^1",
"symfony/phpunit-bridge": "^4.2",
"phpstan/phpstan-shim": "0.11.5"
},
"conflict": {
"hhvm": "*"
},
"autoload": {
"psr-4": {
"Markup\\Contentful\\Tests\\": "tests/",
"Markup\\Contentful\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.8.x-dev"
}
}
}