-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
65 lines (65 loc) · 2.18 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "netgen/layouts-contentful",
"description": "Netgen Layouts & Contentful integration",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^8.1",
"netgen/layouts-core": "~1.4.0",
"contentful/contentful-bundle": "^7.2",
"doctrine/orm": "^2.13",
"symfony-cmf/routing-bundle": "^3.0",
"twig/extra-bundle": "^3.5",
"twig/markdown-extra": "^3.5",
"league/commonmark": "^2.3"
},
"require-dev": {
"netgen/layouts-coding-standard": "^2.0",
"phpunit/phpunit": "^10.1",
"symfony/phpunit-bridge": "^6.2",
"symfony/var-dumper": "^6.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"vimeo/psalm": "^5.4",
"psalm/plugin-symfony": "^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.0"
},
"config": {
"allow-plugins": false
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"coverage": "@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --coverage-html=coverage --colors=always",
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon --level=8 --ansi lib bundle",
"phpstan-tests": "@php vendor/bin/phpstan analyse -c phpstan.tests.neon --level=8 --ansi tests",
"psalm": "@php vendor/bin/psalm -c psalm.xml --show-info=false"
},
"autoload": {
"psr-4": {
"Netgen\\Layouts\\Contentful\\": "lib/",
"Netgen\\Bundle\\LayoutsContentfulBundle\\": "bundle/"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Layouts\\Contentful\\Tests\\": "tests/lib/",
"Netgen\\Bundle\\LayoutsContentfulBundle\\Tests\\": "tests/bundle/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
}
}