-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·49 lines (49 loc) · 1.4 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
{
"name": "fromtheoutfit/ipstack",
"description": "Simple custom wrapper around the ipstack api",
"type": "craft-plugin",
"version": "2.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"ipstack"
],
"support": {
"docs": "https://github.com/fromtheoutfit/ipstack/blob/master/README.md",
"issues": "https://github.com/fromtheoutfit/ipstack/issues"
},
"license": "MIT",
"authors": [
{
"name": "The Outfit, Inc",
"homepage": "https://www.theout.fit"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"require-dev": {
"craftcms/cms": "^4.0.0",
"codeception/codeception": "^3.0",
"vlucas/phpdotenv": "^3.4.0"
},
"autoload": {
"psr-4": {
"fromtheoutfit\\ipstack\\": "src/"
}
},
"extra": {
"name": "ipstack",
"handle": "ipstack",
"developer": "The Outfit, Inc",
"developerUrl": "https://www.theout.fit",
"documentationUrl": "https://github.com/fromtheoutfit/ipstack/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/fromtheoutfit/ipstack/master/CHANGELOG.md",
"components": {
"ipstackService": "fromtheoutfit\\ipstack\\services\\IpstackService"
},
"class": "fromtheoutfit\\ipstack\\Ipstack"
}
}