forked from usemarkup/contentful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.05 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
{
"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": "douglas@usemarkup.com"
},
{
"name": "Markup",
"homepage": "http://www.usemarkup.com/"
}
],
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/promises": "~1.1",
"psr/cache": "~1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6",
"mockery/mockery": "^1",
"symfony/phpunit-bridge": "^2|^3"
},
"conflict": {
"hhvm": "*"
},
"autoload": {
"psr-4": {
"Markup\\Contentful\\Tests\\": "tests/",
"Markup\\Contentful\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.8.x-dev"
}
}
}