-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
51 lines (51 loc) · 1.49 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
{
"name": "lukeyouell/craft-geocookie",
"description": "Collect information about a visitor's location based on their IP address and store the information as a cookie.",
"type": "craft-plugin",
"version": "1.3.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"geo cookie"
],
"support": {
"docs": "https://github.com/lukeyouell/craft-geocookie/blob/v1/README.md",
"issues": "https://github.com/lukeyouell/craft-geocookie/issues"
},
"license": "MIT",
"authors": [
{
"name": "Luke Youell",
"homepage": "https://github.com/lukeyouell"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"lukeyouell\\geocookie\\": "src/"
}
},
"extra": {
"name": "Geo Cookie",
"handle": "geo-cookie",
"schemaVersion": "1.1.1",
"hasCpSettings": true,
"hasCpSection": false,
"documentationUrl": "https://github.com/lukeyouell/craft-geocookie/blob/v1/README.md",
"changelogUrl": "https://raw.githubusercontent.com/lukeyouell/craft-geocookie/v1/CHANGELOG.md",
"components": {
"geoCookieService": "lukeyouell\\geocookie\\services\\GeoCookieService"
},
"class": "lukeyouell\\geocookie\\GeoCookie"
}
}