forked from contentful/ContentfulBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.41 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": "atolye15/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.0",
"atolye15/contentful": "4.2.*",
"symfony/framework-bundle": "^3.4|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0|^7.0",
"twig/twig": "^2.5",
"cache/array-adapter": "^1.0",
"monolog/monolog": "^1.24"
},
"autoload": {
"psr-4": {
"Atolye15\\ContentfulBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atolye15\\Tests\\ContentfulBundle\\": "tests/"
},
"files": [
"vendor/atolye15/core/scripts/TestCase.php"
]
},
"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 -v",
"lint-static-analysis": "$([ -f phpstan.phar ] && echo \"php phpstan.phar\" || echo \"phpstan\") analyse --level=max src/",
"release": "php vendor/contentful/core/scripts/release.php"
},
"extra": {
"branch-alias": {
"dev-master": "4.2.0-dev"
}
}
}