-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.46 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name":"contao-bootstrap/card",
"description":"Bootstrap card templates for Contao CMS",
"keywords":["bootstrap", "card", "contao"],
"type":"contao-bundle",
"license":"LGPL-3.0+",
"authors":[
{
"name":"David Molineus",
"email":"mail@netzmacht.de",
"homepage":"https://netzmacht.de",
"role":"Developer"
}
],
"support":{
"email":"mail@netzmacht.de",
"issues":"https://github.com/contao-bootstrap/card/issues",
"wiki":"http://contao-bootstrap.netzmacht.de",
"source":"https://github.com/contao-bootstrap/card"
},
"conflict": {
"netzmacht/contao-bootstrap": "*"
},
"require":{
"php":">=7.1",
"contao/core-bundle":"~4.4",
"contao-bootstrap/core": "~2.0@alpha"
},
"require-dev": {
"phpcq/all-tasks": "^1.2",
"contao/manager-plugin": "^2.1"
},
"autoload": {
"psr-4": { "ContaoBootstrap\\Card\\": "src/" }
},
"extra":{
"contao-manager-plugin": "ContaoBootstrap\\Card\\ContaoManager\\Plugin",
"contao": {
"transifex": {
"project": "contao-bootstrap",
"prefix": "card-",
"languages_cto": "src/Resources/contao/languages",
"languages_tx": ".tx"
}
},
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-develop": "2.1.x-dev"
}
}
}