-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.15 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
{
"name":"bugbuster/mobiledetection",
"description":"Contao helper class for detecting mobile phones and tablets (device type). A Hook adds a CSS class in the body tag.",
"keywords":["contao","detection","mobile","phone","tablet"],
"type":"contao-module",
"homepage":"http://www.contao.glen-langer.de",
"license":"LGPL-3.0+",
"authors":[
{
"name":"Glen Langer",
"homepage":"http://www.contao.glen-langer.de",
"role":"Developer"
},
{
"name": "Serban Ghita",
"email": "serbanghita@gmail.com",
"homepage": "http://mobiledetect.net",
"role": "Developer"
}
],
"support":{
"issues":"https://github.com/BugBuster1701/mobiledetection/issues",
"irc":"irc://irc.freenode.org/contao.dev",
"source":"https://github.com/BugBuster1701/mobiledetection"
},
"require":{
"php":">=5.3",
"contao/core":">=3,<4",
"contao-community-alliance/composer-plugin": "*",
"mobiledetect/mobiledetectlib": "2.*"
},
"autoload":{
"classmap":[""]
},
"replace":{
"contao-legacy/mobiledetection":"self.version"
},
"extra":{
"contao":{
"sources":{
"":"system/modules/mobiledetection"
}
}
}
}