-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
90 lines (90 loc) · 2.5 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
87
88
89
90
{
"name": "contao-bootstrap/tab",
"description": "Bootstrap tab component for Contao CMS",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"bootstrap",
"Contao",
"tab",
"component"
],
"authors": [
{
"name": "David Molineus",
"email": "mail@netzmacht.de",
"homepage": "https://netzmacht.de",
"role": "Developer"
},
{
"name": "Alexander Kehr",
"email": "info@kehr-solutions.de",
"homepage": "https://www.kehr-solutions.de",
"role": "Developer"
}
],
"support": {
"email": "mail@netzmacht.de",
"issues": "https://github.com/contao-bootstrap/tab/issues",
"wiki": "http://contao-bootstrap.netzmacht.de",
"source": "https://github.com/contao-bootstrap/tab"
},
"require": {
"php": "^7.4 || ^8.1",
"beberlei/assert": "^2.9 || ^3.0",
"contao-bootstrap/core": "^2.1",
"contao-community-alliance/meta-palettes": "~2.0 || ~1.11",
"contao/core-bundle": "^4.9",
"doctrine/dbal": "^2.11 || ^3.0",
"menatwork/contao-multicolumnwizard-bundle": "~3.2",
"netzmacht/contao-toolkit": "^3.8",
"netzmacht/html": "~2.0",
"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.50 || ^5.4.20",
"symfony/translation-contracts": "^1.1 || ^2.0"
},
"require-dev": {
"contao-bootstrap/grid": "^2.4",
"contao/manager-plugin": "^2.1",
"doctrine/coding-standard": "^9.0",
"phpcq/coding-standard": "^2.1.2",
"phpcq/runner-bootstrap": "1.x-dev"
},
"conflict": {
"contao-bootstrap/grid": "<2.4 || >= 3.0",
"contao/manager-plugin": "<2.1 || >= 3.0"
},
"suggest": {
"contao-bootstrap/grid": "Use grid component for horizontal aligned tab navigation."
},
"autoload": {
"psr-4": {
"ContaoBootstrap\\Tab\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-develop": "2.2.x-dev",
"dev-master": "2.1.x-dev"
},
"contao": {
"transifex": {
"languages_cto": "src/Resources/contao/languages",
"languages_tx": ".tx",
"prefix": "tab-",
"project": "contao-bootstrap"
}
},
"contao-manager-plugin": "ContaoBootstrap\\Tab\\ContaoManager\\Plugin"
}
}