-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
86 lines (86 loc) · 2.35 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "contao-bootstrap/navbar",
"description": "Bootstrap navbar component for Contao CMS",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"bootstrap",
"components",
"contao",
"navbar"
],
"authors": [
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
},
{
"name": "Alexander Kehr",
"email": "[email protected]",
"homepage": "https://www.kehr-solutions.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/contao-bootstrap/navbar/issues",
"wiki": "http://contao-bootstrap.de",
"source": "https://github.com/contao-bootstrap/navbar"
},
"require": {
"php": "^7.4 || ^8.0",
"contao-bootstrap/core": "^2.0",
"contao-community-alliance/meta-palettes": "^2.0",
"contao/core-bundle": "^4.9",
"menatwork/contao-multicolumnwizard-bundle": "^3.4",
"netzmacht/contao-toolkit": "^3.7",
"netzmacht/html": "^2.0.2",
"symfony/config": "^4.4 || ^5.4",
"symfony/dependency-injection": "^4.4 || ^5.4",
"symfony/http-foundation": "^4.4 || ^5.4",
"symfony/http-kernel": "^4.4 || ^5.4",
"symfony/routing": "^4.4 || ^5.4",
"symfony/translation-contracts": "^1.1 || ^2.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"doctrine/coding-standard": "^9.0.",
"phpcq/coding-standard": "^2.1.2",
"phpcq/plugin-api": "1.x-dev",
"phpcq/runner-bootstrap": "1.x-dev"
},
"conflict": {
"netzmacht/contao-bootstrap": "*"
},
"autoload": {
"psr-4": {
"ContaoBootstrap\\Navbar\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao-community-alliance/composer-plugin": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "2.3.x-dev",
"dev-master": "2.2.x-dev"
},
"contao": {
"transifex": {
"languages_cto": "src/Resources/contao/languages",
"languages_tx": ".tx",
"prefix": "navbar-",
"project": "contao-bootstrap"
}
},
"contao-manager-plugin": "ContaoBootstrap\\Navbar\\ContaoManager\\Plugin"
}
}