forked from danielme85/laravel-geoip2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 848 Bytes
/
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
{
"name": "danielme85/laravel-geoip2",
"description": "Service provider and DB downloader for Maxminds PHP API GeoIP2.",
"type": "laravel",
"license": "MIT",
"authors": [
{
"name": "Daniel Mellum",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": ">=5.4",
"guzzlehttp/guzzle": "~6.0",
"geoip2/geoip2": "~2.0"
},
"require-dev": {
"orchestra/testbench": ">=3.7"
},
"autoload": {
"psr-4": {
"danielme85\\Geoip2\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"danielme85\\Geoip2\\Geoip2ServiceProvider"
],
"aliases": {
"Reader": "danielme85\\Geoip2\\Facade\\Reader"
}
}
}
}