forked from contentful/contentful.php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.41 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.41 KB
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
{
"name": "patch-engineering/contentful",
"description": "SDK for the Contentful Content Delivery API",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.2|^8.0",
"contentful/core": "^3.0",
"contentful/rich-text": "^3.1",
"psr/cache": "^1.0",
"cache/void-adapter": "^1.0"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"Contentful\\Delivery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contentful\\Tests\\Delivery\\": "tests"
},
"files": [
"vendor/contentful/core/scripts/TestCase.php"
]
},
"bin": [
"bin/contentful"
],
"scripts": {
"test": "vendor/bin/phpunit",
"test-quick-fail": "php vendor/bin/phpunit --stop-on-error --stop-on-failure -v",
"lint-syntax": "$([ -f php-cs-fixer.phar ] && echo \"php php-cs-fixer.phar\" || echo \"php-cs-fixer\") fix --dry-run --stop-on-violation --show-progress=none --verbose",
"lint-static-analysis": "$([ -f phpstan.phar ] && echo \"php phpstan.phar\" || echo \"phpstan\") analyse --no-progress --level=max src/",
"release": "php vendor/contentful/core/scripts/release.php"
},
"extra": {
"branch-alias": {
"dev-master": "4.2.0-dev"
}
},
"suggest": {
"symfony/cache": "A PSR-6 compatible cache component"
}
}