-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 973 Bytes
/
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
{
"name":"friends-of-contao/contao-php-info",
"description":"Display phpinfo output in Contao backend.",
"keywords":["contao","backend","php info"],
"type":"contao-module",
"license":"LGPL-3.0+",
"authors":[
{
"name":"Cliff Parnitzky",
"email":"contao@cliff-parnitzky.de",
"role":"Developer"
},
{
"name":"Christoph Krebs",
"role":"Developer"
}
],
"support":{
"email":"contao@cliff-parnitzky.de",
"issues":"https://github.com/friends-of-contao/contao-php-info/issues",
"source":"https://github.com/friends-of-contao/contao-php-info"
},
"require":{
"php":">=5.3",
"contao/core-bundle":"~3.2 || ~4.4",
"contao-community-alliance/composer-plugin":"~2.4 || ~3.0"
},
"conflict": {
"contao/core":"3.4.0,3.4.1,3.4.2"
},
"replace": {
"cliffparnitzky/php-info": "*"
},
"extra":{
"contao":{
"sources":{
"system/modules/PHPInfo":"system/modules/PHPInfo"
}
},
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}