-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
39 lines (39 loc) · 1.04 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
{
"name": "ip2location/ip2location-laravel",
"description": "Lookup for visitor's IP information, such as country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type.",
"license": "MIT",
"keywords": [
"laravel",
"laravel 6",
"laravel 7",
"laravel 8",
"laravel 9",
"laravel 10",
"laravel 11",
"IP2Location",
"geolocation"
],
"authors": [
{
"name": "IP2Location",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4",
"ip2location/ip2location-php": ">=9.4"
},
"autoload": {
"psr-4": {
"Ip2location\\IP2LocationLaravel\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ip2location\\IP2LocationLaravel\\IP2LocationLaravelServiceProvider"
]
}
}
}