-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.6 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
62
63
64
{
"name":"menatwork/geolocation",
"description":"Library for user location detection",
"keywords":["geolocation","detection","library","geoip"],
"type":"contao-module",
"homepage":"http://www.men-at-work.de",
"license":"LGPL-3.0+",
"authors":[
{
"name":"Andreas Isaak",
"email":"[email protected]",
"homepage":"http://www.men-at-work.de",
"role":"Developer"
},
{
"name":"Stefan Heimes",
"email":"[email protected]",
"homepage":"http://www.men-at-work.de",
"role":"Developer"
},
{
"name":"David Maack",
"email":"[email protected]",
"homepage":"http://www.men-at-work.de",
"role":"Developer"
}
],
"support":{
"email":"[email protected]",
"issues":"https://github.com/menatwork/geolocation/issues",
"irc":"irc://irc.freenode.org/contao.dev",
"source":"https://github.com/menatwork/geolocation"
},
"require":{
"php":">=5.3",
"contao/core":">=2.11,<4",
"contao-community-alliance/composer-installer":"*",
"discordier/httprequestextended":">=1.0,<1.2",
"menatwork/contao-multicolumnwizard":"~3.2"
},
"suggest": {
"contao-legacy/ajax": "Allows the user to change the country with a AJAX call."
},
"autoload":{
"classmap":["system/"]
},
"replace":{
"contao-legacy/geolocation":"*"
},
"extra":{
"contao":{
"sources":{
"system/config/countriesByContinent.php":"system/config/countriesByContinent.php",
"system/modules/geolocation":"system/modules/geolocation"
},
"transifex": {
"project": "geolocation",
"prefix": "",
"languages_cto": "system/modules/geolocation/languages",
"languages_tx": ".tx"
}
}
}
}