forked from victorybiz/geoip-location
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (43 loc) · 1.21 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
{
"name": "victorybiz/geoip-location",
"description": "Get the geographical location of website visitors based on their IP addresses. Support Laravel and PHP (Non-Laravel) Project.",
"keywords": ["geoip","php","github","laravel","laravel 5", "laravel 6", "laravel 7", "laravel 8","Open Source"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Victory Osayi",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"ipinfo/ipinfo": "2.1.x-dev"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Victorybiz\\GeoIPLocation\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Victorybiz\\GeoIPLocation\\GeoIPLocationServiceProvider"
],
"aliases": {
"GeoIPLocation": "Victorybiz\\GeoIPLocation\\Facades\\GeoIPLocationFacade"
}
}
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/victoryosayi"
}
]
}