forked from BugBuster1701/contao-xing-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.49 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
{
"name":"bugbuster/contao-xing-bundle",
"description":"Contao 4 Xing Bundle",
"keywords":["contao","xing","bundle"],
"type":"contao-bundle",
"homepage":"http://contao.ninja",
"license":"LGPL-3.0+",
"authors":[
{
"name":"Glen Langer",
"homepage":"http://contao.ninja",
"role":"Developer"
}
],
"support":{
"issues":"https://github.com/BugBuster1701/contao-xing-bundle/issues",
"irc":"irc://irc.freenode.org/contao.dev",
"source":"https://github.com/BugBuster1701/contao-xing-bundle",
"wiki":"http://de.contaowiki.org/Xing",
"forum":"https://community.contao.org/de/forumdisplay.php?119"
},
"require":{
"php": ">=5.6.0",
"contao/core-bundle": "~4.3"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0",
"symfony/symfony": "3.2.7"
},
"autoload": {
"psr-4": {
"BugBuster\\XingBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"extra": {
"branch-alias": {
"dev-develop": "1.2.x-dev"
},
"contao": {
"transifex": {
"project": "contao-xing-bundle",
"prefix": "master-",
"languages_cto": "src/Resources/contao/languages",
"languages_tx": ".tx"
}
},
"contao-manager-plugin": "BugBuster\\XingBundle\\ContaoManager\\Plugin"
}
}