-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
52 lines (52 loc) · 1.47 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
{
"name": "vaersaagod/geomate",
"description": "GeoMate is a friend in need for all things geolocation. IP to geo lookup, automatic redirects (based on country, continent, language, etc), site switcher... You name it.",
"version": "3.0.0",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"ip",
"geo",
"language",
"lookup",
"redirect"
],
"support": {
"docs": "https://github.com/vaersaagod/geomate/blob/master/README.md",
"issues": "https://github.com/vaersaagod/geomate/issues"
},
"license": "MIT",
"authors": [
{
"name": "Værsågod",
"homepage": "https://www.vaersaagod.no"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"geoip2/geoip2": "^2.0.0",
"jaybizzle/crawler-detect" :"^1.0.0",
"zonuexe/http-accept-language" :"^0.4"
},
"suggest": {
"ext-zlib": "Requires ext-zlib PHP extension to download database."
},
"autoload": {
"psr-4": {
"vaersaagod\\geomate\\": "src/"
}
},
"extra": {
"name": "GeoMate",
"handle": "geomate",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/vaersaagod/geomate/master/CHANGELOG.md",
"components": {},
"class": "vaersaagod\\geomate\\GeoMate"
}
}