forked from contentful/ContentfulBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.43 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
45
46
47
48
49
50
51
{
"name": "contentful/contentful-bundle",
"description": "A Symfony Bundle to integrate the Contentful CDA SDK",
"keywords": [
"contentful",
"cms",
"sdk",
"symfony"
],
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^7.4|^8.0",
"contentful/contentful": "^6.0|^7.0",
"psr/log": "^1.1|^2.0|^3.0",
"symfony/framework-bundle": "^5.4|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"monolog/monolog": "^2.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^8.5",
"symfony/cache": "^5.0|^6.0",
"twig/twig": "^3.0"
},
"autoload": {
"psr-4": {
"Contentful\\ContentfulBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contentful\\Tests\\ContentfulBundle\\": "tests/"
},
"files": [
"vendor/contentful/core/scripts/TestCase.php"
]
},
"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=4",
"release": "php vendor/contentful/core/scripts/release.php"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": false
},
"sort-packages": true
}
}