-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
101 lines (101 loc) · 2.62 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "mvo/contao-survey",
"type": "contao-bundle",
"description": "Create surveys from the Contao backend.",
"keywords": [
"contao",
"survey",
"questionnaire",
"poll"
],
"license": "MIT",
"authors": [
{
"name": "Moritz Vondano",
"homepage": "https://github.com/m-vo/contao-survey"
}
],
"require": {
"php": ">=7.4",
"ausi/slug-generator": "^1.1",
"contao/core-bundle": "^4.10",
"doctrine/collections": "^1.5",
"doctrine/dbal": "^2.10|^3.0",
"doctrine/doctrine-bundle": "^1.8|^2.0",
"doctrine/orm": "^2.6.3",
"doctrine/persistence": "^2.0",
"symfony/config": "^4.4|^5.0",
"symfony/translation-contracts": "^2.3|^3.0",
"symfony/twig-bundle": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/event-dispatcher": "^4.4|^5.0",
"symfony/event-dispatcher-contracts": "^1.1|^2.0|^3.0",
"symfony/expression-language": "^4.4|^5.0",
"symfony/form": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/options-resolver": "^4.4|^5.0",
"symfony/security-core": "^4.4|^5.0",
"symfony/security-csrf": "^4.4|^5.0",
"symfony/validator": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"twig/twig": "^2.0|^3.0",
"league/csv": "^9.6",
"psr/container": "^1.0.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"bamarni/composer-bin-plugin": "^1.4",
"phpunit/phpunit": "^8.5"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Mvo\\ContaoSurvey\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mvo\\ContaoSurvey\\Tests\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "Mvo\\ContaoSurvey\\ContaoManager\\Plugin",
"bamarni-bin": {
"bin-links": false
}
},
"scripts": {
"composer-require-checker": [
"vendor-bin/composer-require-checker/vendor/bin/composer-require-checker check --config-file=composer-require-checker.json"
],
"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"
],
"chain": [
"@composer-require-checker",
"@cs",
"@psalm",
"@tests"
],
"release": [
"@chain",
"yarn build"
]
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"bamarni/composer-bin-plugin": true,
"contao/manager-plugin": true
}
}
}