-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.03 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
{
"name":"contaoblackforest/contao-compat",
"description":"Compat layer to work around differences in the Contao 2 and Contao 3 API.",
"keywords":["contao", "compat"],
"type":"contao-module",
"license":"LGPL-3.0+",
"authors":[
{
"name": "Sven Baumann",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Dominik Tomasi",
"email": "[email protected]",
"role": "Developer"
}
],
"support":{
"issues": "https://github.com/ContaoBlackForest/contao-compat/issues",
"source": "https://github.com/ContaoBlackForest/contao-compat"
},
"require":{
"php":">=5.3",
"contao/core":">=2.11,<4",
"contao-community-alliance/composer-plugin": "~2.0"
},
"require-dev":{
"squizlabs/php_codesniffer":"~2.3"
},
"autoload":{
"psr-0": { "Compat": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev",
"dev-develop": "1.4.x-dev"
}
},
"replace": {
"bit3/contao-compat": "self.version"
}
}