-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.06 KB
/
Copy pathcomposer.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "heimrichhannot/contao-categories-bundle",
"type": "contao-bundle",
"description": "This bundle allows to assign nestable categories to arbitrary entities in Contao-driven systems.",
"license": "LGPL-3.0-or-later",
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.4",
"heimrichhannot/contao-utils-bundle": "^2.210",
"heimrichhannot/contao-multi-column-editor-bundle": "^2.0",
"wa72/htmlpagedom": "^1.3 || ^2.0",
"heimrichhannot/contao-request-bundle": "^1.0"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\CategoriesBundle\\": "src/"
},
"classmap": [
"src/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\CategoriesBundle\\ContaoManager\\Plugin"
},
"suggest": {
"heimrichhannot/contao-categories-multilingual-bundle": "Adds multilanguage support for categories bundle."
}
}