-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.05 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.05 KB
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
{
"name": "menatwork/contao-toolbox",
"description": "Tools for a better contao work.",
"license": "LGPL-3.0-or-later",
"type": "contao-module",
"authors": [
{
"name": "Stefan Heimes",
"email": "heimes@men-at-work.de",
"homepage": "https://www.men-at-work.de",
"role": "Developer"
}
],
"support": {
"email": "contao@men-at-work.de",
"issues": "https://github.com/menatwork/contao-toolbox/issues",
"source": "https://github.com/menatwork/contao-toolbox"
},
"require": {
"php": "^7.2 || ^8.0",
"contao/core-bundle": "^4.9"
},
"autoload": {
"psr-4": {
"MenAtWork\\ContaoToolbox\\": "src"
},
"files": [
"src/Resources/functions/images.php"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"contao-community-alliance/composer-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true
}
},
"extra": {
"contao-manager-plugin": "MenAtWork\\ContaoToolbox\\ContaoManager\\Plugin"
}
}