forked from contao-bootstrap/grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.39 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
{
"name":"contao-bootstrap/grid",
"description":"Bootstrap grid component",
"keywords":["bootstrap", "components", "contao", "grid"],
"type":"contao-bundle",
"license":"LGPL-3.0-or-later",
"authors":[
{
"name":"David Molineus",
"email":"[email protected]",
"homepage":"https://netzmacht.de",
"role":"Developer"
}
],
"support":{
"email":"[email protected]",
"issues":"https://github.com/contao-bootstrap/grid/issues",
"wiki":"http://contao-bootstrap.netzmacht.de",
"source":"https://github.com/contao-bootstrap/grid"
},
"require":{
"php":">=7.1",
"contao/core-bundle":"^4.4",
"contao-bootstrap/core": "^2.0",
"menatwork/contao-multicolumnwizard":"^3.3.14",
"contao-community-alliance/meta-palettes":"^2.0 || ^1.11"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"phpcq/all-tasks": "^1.2"
},
"conflict": {
"netzmacht/contao-bootstrap": "*"
},
"autoload": {
"psr-4": { "ContaoBootstrap\\Grid\\": "src/" }
},
"extra":{
"contao": {
"transifex": {
"project": "contao-bootstrap",
"prefix": "grid-",
"languages_cto": "src/Resources/contao/languages",
"languages_tx": ".tx"
}
},
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-develop": "2.1.x-dev"
},
"contao-manager-plugin": "ContaoBootstrap\\Grid\\ContaoManager\\Plugin"
}
}