forked from contentful/contentful-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 954 Bytes
/
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
{
"name": "contentful/laravel",
"description": "Integrates the Contentful PHP SDK with Laravel.",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.0",
"laravel/framework": "~5.4",
"contentful/contentful": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^6.0|^7.0",
"orchestra/testbench": "^3.5"
},
"autoload": {
"psr-4": {
"Contentful\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contentful\\Tests\\Laravel\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.1.0-dev"
},
"laravel": {
"providers": [
"Contentful\\Laravel\\ContentfulServiceProvider"
],
"aliases": {
"ContentfulDelivery": "Contentful\\Laravel\\Facades\\ContentfulDelivery"
}
}
}
}