-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
43 lines (43 loc) · 1.24 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
{
"name": "contentful/laravel",
"description": "Integrates the Contentful PHP SDK with Laravel.",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0",
"laravel/framework": "^8.0|^9.0|^10.0|^11.0",
"contentful/contentful": "^7.0.1",
"contentful/core": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"orchestra/testbench": "^5.1|^6.0",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {
"Contentful\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contentful\\Tests\\Laravel\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-quick-fail": "php vendor/bin/phpunit --stop-on-error --stop-on-failure -v",
"lint-static-analysis": "php vendor/bin/phpstan analyse src --level=5",
"release": "php vendor/contentful/core/scripts/release.php"
},
"extra": {
"laravel": {
"providers": [
"Contentful\\Laravel\\ContentfulServiceProvider"
],
"aliases": {
"ContentfulDelivery": "Contentful\\Laravel\\Facades\\ContentfulDelivery"
}
}
}
}