-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.37 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.37 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
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
{
"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": "^8.1",
"beberlei/assert": "^3.0",
"contao-bootstrap/core": "^3.0",
"contao-community-alliance/meta-palettes": "^2.0",
"contao/core-bundle": "^4.13 || ^5.3",
"doctrine/dbal": "^3.3",
"mvo/contao-group-widget": "^1.4",
"netzmacht/contao-toolkit": "^3.9 || ^4.0",
"netzmacht/html": "^2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/translation-contracts": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"contao-bootstrap/grid": "^3.0",
"contao/manager-plugin": "^2.1",
"phpcq/coding-standard": "^2.1.2",
"phpcq/runner-bootstrap": "@dev"
},
"conflict": {
"contao-bootstrap/grid": "<3 || >= 4.0",
"contao/manager-plugin": "<2.1 || >= 3.0"
},
"suggest": {
"contao-bootstrap/grid": "Use grid component for horizontal aligned tab navigation."
},
"minimum-stability": "dev",
"prefer-stable": true,
"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
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "3.1.x-dev",
"dev-master": "3.0.x-dev",
"dev-support/2.x": "2.x-dev"
},
"contao-manager-plugin": "ContaoBootstrap\\Tab\\ContaoManager\\Plugin"
}
}