-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
68 lines (68 loc) · 2.37 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
66
67
68
{
"name": "netgen/layouts-ibexa",
"description": "Netgen Layouts & Ibexa CMS integration",
"license": "GPL-2.0-only",
"type": "symfony-bundle",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^8.1",
"netgen/layouts-core": "~1.4.9",
"netgen/content-browser-ibexa": "^1.4",
"ibexa/core": "^4.4",
"ibexa/admin-ui": "^4.4",
"ibexa/http-cache": "^4.4"
},
"require-dev": {
"netgen/layouts-coding-standard": "^2.0",
"phpunit/phpunit": "^10.1",
"symfony/phpunit-bridge": "^5.4",
"symfony/var-dumper": "^5.4",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpstan-phpunit": "^1.3",
"vimeo/psalm": "^5.4",
"psalm/plugin-symfony": "^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"matthiasnoback/symfony-config-test": "^5.0",
"netgen/tagsbundle": "^5.0"
},
"config": {
"allow-plugins": false
},
"suggest": {
"netgen/layouts-ibexa-site-api": "Integrate Netgen Layouts with Ibexa CMS Site API to boost your site-building productivity with Ibexa CMS"
},
"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\\Ibexa\\": "lib/",
"Netgen\\Bundle\\LayoutsIbexaBundle\\": "bundle/"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Layouts\\Tests\\": "vendor/netgen/layouts-core/tests/lib/",
"Netgen\\Layouts\\Ibexa\\Tests\\": "tests/lib/",
"Netgen\\Bundle\\LayoutsIbexaBundle\\Tests\\": "tests/bundle/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
}
}