-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
46 lines (44 loc) · 1.16 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
{
"name": "richardhj/contao-knp-menu",
"description": "Wrapper extension for knp-menu.",
"type": "contao-bundle",
"license": "MIT",
"authors": [
{
"name": "Richard Henkenjohann",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/richardhj/contao-knp-menu/issues",
"source": "https://github.com/richardhj/contao-knp-menu"
},
"require": {
"php": ">=7.4",
"contao/core-bundle": "^4.9 || ^5.0",
"knplabs/knp-menu-bundle": "^2.2. || ^3.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"contao/easy-coding-standard": "^4.0",
"contao/manager-plugin": "^2.7"
},
"autoload": {
"psr-4": {
"Richardhj\\ContaoKnpMenuBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Richardhj\\ContaoKnpMenuBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}