-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
47 lines (47 loc) · 1.24 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
{
"name": "erdmannfreunde/theme-toolbox",
"description": "Erdmann & Freunde Theme Utilities",
"keywords": [
"contao",
"bundle"
],
"type": "contao-bundle",
"homepage": "https://www.erdmann-freunde.de",
"license": "LGPL-3.0-or-later",
"support": {
"email": "moin@erdmann-freunde.de",
"issues": "https://github.com/erdmannfreunde/theme-toolbox/issues",
"source": "https://github.com/erdmannfreunde/theme-toolbox"
},
"require": {
"php": "^8.1",
"contao/core-bundle": "^5.0",
"doctrine/dbal": "^3.0",
"symfony/config": "^5.0 || ^6.0",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/http-kernel": "^5.0 || ^6.0"
},
"conflict": {
"contao/core-bundle": "<5.0"
},
"require-dev": {
"contao/manager-plugin": "^2.1",
"contao/easy-coding-standard": "^4.0"
},
"autoload": {
"psr-4": {
"ErdmannFreunde\\ThemeToolboxBundle\\": "src"
}
},
"extra": {
"contao-manager-plugin": "ErdmannFreunde\\ThemeToolboxBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}