forked from hschottm/survey_ce
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
82 lines (82 loc) · 2.07 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
{
"name": "pdir/contao-survey",
"description": "Contao bundle to create questionnaires and run online surveys",
"keywords": [
"contao",
"module",
"extension",
"survey",
"bundle"
],
"type": "contao-bundle",
"license": [
"LGPL-3.0-or-later",
"CC-BY-NC-SA-4.0"
],
"authors": [
{
"name": "Helmut Schottmüller",
"homepage": "https://github.com/hschottm"
},
{
"name": "Mathias Arzberger",
"homepage": "https://pdir.de",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"contao/core-bundle": "^4.9",
"doctrine/dbal": "^2.5 || ^3.0",
"hschottm/contao-textwizard": "^3.2",
"mvo/contao-group-widget": "^1.4",
"sonata-project/exporter": "^1.0",
"symfony/polyfill-php80": "^v1.26"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.5",
"contao/manager-plugin": "^2.0",
"contao/easy-coding-standard": "^3.0",
"phpunit/phpunit": "^7.1 || ^8.4 || ^9.5",
"symfony/phpunit-bridge": "^4.4 || ^5.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.2",
"terminal42/notification_center": "1.6.0"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Hschottm\\SurveyBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"autoload-dev": {
"psr-4": {
"Hschottm\\SurveyBundle\\Tests\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "Hschottm\\SurveyBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao/manager-plugin": true,
"contao-community-alliance/composer-plugin": true,
"bamarni/composer-bin-plugin": true,
"php-http/discovery": true
}
}
}