-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
85 lines (85 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "mvo/contao-group-widget",
"type": "contao-bundle",
"description": "Adds a new group widget that allows repeating a set of DCA fields.",
"keywords": [
"contao",
"widget",
"group",
"DCA",
"repeat",
"multi"
],
"license": "MIT",
"authors": [
{
"name": "Moritz Vondano",
"homepage": "https://github.com/m-vo/contao-group-widget"
}
],
"require": {
"php": ">=7.4",
"contao/core-bundle": "^4.9 || ^5.0",
"twig/twig": "^2.7 || ^3.0",
"doctrine/collections": "^1.4 || ^2.1",
"doctrine/dbal": "^2.12 || ^3.0",
"doctrine/inflector": "^1.4 || ^2.0",
"doctrine/orm": "^2.6",
"psr/container": "^1.0 || ^2.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"bamarni/composer-bin-plugin": "^1.4",
"phpunit/phpunit": "^9.5",
"symfony/cache": "^5.4"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Mvo\\ContaoGroupWidget\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mvo\\ContaoGroupWidget\\Tests\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "Mvo\\ContaoGroupWidget\\ContaoManager\\Plugin",
"bamarni-bin": {
"bin-links": false
}
},
"scripts": {
"cs": [
"vendor-bin/ecs/vendor/bin/ecs check src tests --config vendor-bin/ecs/config/default.php --fix --ansi"
],
"psalm" : [
"vendor-bin/psalm/vendor/bin/psalm --no-suggestions"
],
"tests": [
"vendor/bin/phpunit --colors=always"
],
"composer-require-checker": [
"vendor-bin/composer-require-checker/vendor/bin/composer-require-checker check --config-file=vendor-bin/composer-require-checker/config.json"
],
"chain" : [
"@cs", "@psalm", "@tests", "@composer-require-checker"
]
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"bamarni/composer-bin-plugin": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
}
}