forked from Hornet-Wing/laravel-geoip2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
65 lines (65 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nbz4live/laravel-geoip2",
"description": "Laravel wrapper for MaxMind GeoIP2",
"keywords": [
"laravel",
"geoip",
"geoip2",
"maxmind"
],
"license": "MIT",
"authors": [
{
"name": "Sergey Fayngold",
"email": "[email protected]"
},
{
"name": "Jakub Srsen",
"email": "[email protected]"
},
{
"name": "Dave Hennigar",
"email": "[email protected]"
},
{
"name": "Csanad Novak",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"geoip2/geoip2": "~2.0",
"guzzlehttp/guzzle": "~6.1",
"illuminate/config": "^5.0||^6.0",
"illuminate/http": "^5.0||^6.0",
"illuminate/support": "^5.0||^6.0"
},
"require-dev": {
"phpunit/phpunit" : "^4.0||^6.0",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"Nbz4live\\LaravelGeoIP2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nbz4live\\LaravelGeoIP2\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Nbz4live\\LaravelGeoIP2\\ServiceProvider"
],
"aliases": {
"GeoIP2": "Nbz4live\\LaravelGeoIP2\\Facades\\GeoIP2"
}
}
},
"minimum-stability": "stable"
}