-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.25 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
{
"name": "netgen/layouts-ezplatform-relation-list-query",
"description": "Netgen Layouts query based on relation list field type for eZ Platform",
"license": "GPL-2.0-only",
"type": "symfony-bundle",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"netgen/layouts-ezplatform": "^1.3"
},
"require-dev": {
"netgen/layouts-coding-standard": "^2.0",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4",
"vimeo/psalm": "^4.30 || ^5.4"
},
"config": {
"allow-plugins": false
},
"conflict": {
"netgen/layouts-relation-list-query": "*"
},
"scripts": {
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon --level=8 --ansi lib bundle",
"psalm": "@php vendor/bin/psalm -c psalm.xml --show-info=false"
},
"autoload": {
"psr-4": {
"Netgen\\Layouts\\Ez\\RelationListQuery\\": "lib/",
"Netgen\\Bundle\\LayoutsEzPlatformRelationListQueryBundle\\": "bundle/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}