-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.23 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
{
"name": "arcanedev/geo-ip",
"description": "GeoIP package for Laravel 5.",
"keywords": ["geoip", "geo-ip", "location", "geolocation", "maxmind", "ip-api", "laravel"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "ARCANEDEV",
"email": "arcanedev.maroc@gmail.com",
"homepage": "https://github.com/arcanedev-maroc",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.3",
"arcanedev/support": "~4.3.0",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"orchestra/testbench": "~3.6.0",
"phpunit/phpunit": "~7.0",
"phpunit/phpcov": "~5.0",
"geoip2/geoip2": "~2.6"
},
"autoload": {
"psr-4": {
"Arcanedev\\GeoIP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arcanedev\\GeoIP\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Arcanedev\\GeoIP\\GeoIPServiceProvider"
]
}
},
"suggest": {
"geoip2/geoip2": "Required if you're going to use the MaxMind database or web service."
}
}