-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 1.17 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
{
"name": "trilobit-gmbh/contao-constants-bundle",
"description": "Contao 4 / Contao 5 constants bundle",
"type": "contao-bundle",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "trilobit GmbH",
"homepage": "https://github.com/trilobit-gmbh"
}
],
"require": {
"php": "^7.3 || ^8.0",
"contao/core-bundle": "^4.9 || ^5.0",
"codefog/contao-haste": "^4.0 || ^5.0"
},
"require-dev": {
"contao/easy-coding-standard": "^3.0",
"contao/manager-plugin": "^2.3",
"friendsofphp/php-cs-fixer": "^v3.1.0"
},
"autoload": {
"psr-4": {
"Trilobit\\ConstantsBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Trilobit\\ConstantsBundle\\ContaoManager\\Plugin",
"symfony": {
"require": "3.4.* || 4.4.* || ^5.2"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao-community-alliance/composer-plugin": true,
"contao/manager-plugin": true
}
}
}