-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.02 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": "gemz/geoip",
"description": "Get GeoIp informations from ip-api.com",
"keywords": [
"gemz",
"geoip"
],
"homepage": "https://github.com/gemzio/geoip",
"license": "MIT",
"authors": [
{
"name": "Stefan Riehl",
"email": "stefan@sriehl.com",
"homepage": "https://gemz.io",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"gemz/http-client": "^2.3"
},
"require-dev": {
"symfony/var-dumper": "^4.3",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.2",
"phpstan/phpstan": "^0.12.8"
},
"autoload": {
"psr-4": {
"Gemz\\GeoIp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gemz\\GeoIp\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}