forked from CsanadNovak/laravel-geoip2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.19 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
{
"name": "acidreign/laravel-geoip2",
"description": "Laravel wrapper for MaxMind GeoIP2",
"keywords": [
"laravel",
"geoip",
"geoip2",
"maxmind"
],
"license": "MIT",
"authors": [
{
"name": "Dave Hennigar",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/Acidreign/laravel-geoip2",
"issues": "https://github.com/Acidreign/laravel-geoip2/issues"
},
"require": {
"php": ">=5.4.0",
"geoip2/geoip2": "~2.0",
"guzzlehttp/guzzle": "~6.1",
"illuminate/config": "~4.1|~5.0",
"illuminate/http": "~4.1|~5.0",
"illuminate/support": "~4.1|~5.0"
},
"require-dev": {
"phpunit/phpunit" : "~4.0",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"Acidreign\\LaravelGeoIP2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acidreign\\LaravelGeoIP2\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "stable"
}