-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
executable file
·64 lines (64 loc) · 1.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dklemmt/contao_dk_mmenu",
"description": "Implementation of mmenu as an extension for the Contao Open Source CMS.",
"keywords": [
"contao",
"navigation",
"menu",
"mobile"
],
"type": "contao-bundle",
"license": [
"MIT"
],
"authors": [
{
"name": "Dirk Klemmt",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Fritz Michael Gschwantner",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/dklemmt/contao_dk_mmenu/issues",
"wiki": "https://github.com/dklemmt/contao_dk_mmenu/wiki",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/dklemmt/contao_dk_mmenu"
},
"require": {
"php": ">=7.4",
"contao/core-bundle": "^4.13 || ^5.0",
"doctrine/dbal": "^2.11 || ^3.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/filesystem": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/polyfill-php80": "^1.29"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"autoload": {
"psr-4": {
"DirkKlemmt\\ContaoMmenuBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"contao-manager-plugin": "DirkKlemmt\\ContaoMmenuBundle\\ContaoManager\\Plugin"
},
"scripts": {
"ecs": "@php tools/ecs/vendor/bin/ecs --config tools/ecs/config/default.php --fix --ansi"
}
}