Skip to content

Commit 9dda8a1

Browse files
committed
Composer.json and tests folder
1 parent 37a6981 commit 9dda8a1

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

composer.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "phirational/laravel-geoip2",
3+
"description": "Laravel wrapper for MaxMind GeoIP2",
4+
"keywords": [
5+
"laravel",
6+
"geoip",
7+
"geoip2",
8+
"maxmind"
9+
],
10+
"authors": [
11+
{
12+
"name": "Marek Viger",
13+
"email": "[email protected]"
14+
}
15+
],
16+
"require": {
17+
"php": ">=5.3.0",
18+
"geoip2/geoip2": "~2.0",
19+
"illuminate/config": "~4.1|~5.0",
20+
"illuminate/http": "~4.1|~5.0",
21+
"illuminate/support": "~4.1|~5.0"
22+
},
23+
"require-dev": {
24+
"phpunit/phpunit" : "~4.0"
25+
},
26+
"autoload": {
27+
"psr-4": {
28+
"Phirational\\LaravelGeoIP2\\": "src/"
29+
}
30+
},
31+
"autoload-dev": {
32+
"psr-4": {
33+
"Phirational\\LaravelGeoIP2\\Test\\": "tests/"
34+
}
35+
},
36+
"extra": {
37+
"branch-alias": {
38+
"dev-master": "1.0-dev"
39+
}
40+
},
41+
"minimum-stability": "stable"
42+
}

tests/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)