forked from hibit-dev/geodetect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.34 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
{
"name": "hibit-dev/geodetect",
"type": "library",
"description": "Automatically detect user's geo data based on their IP address",
"homepage": "https://www.hibit.dev",
"license": "MIT",
"keywords": [
"ip",
"geo",
"country",
"location",
"detection",
"laravel",
"symfony"
],
"authors": [
{
"name": "Tigran Mekinyan",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"geoip2/geoip2": "^3.0",
"illuminate/support": "^8.0|^9.0|^10.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Hibit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon",
"test": "vendor/bin/phpunit tests",
"test-coverage": "vendor/bin/phpunit tests --coverage-html reports/ --coverage-clover=coverage.xml"
},
"extra": {
"laravel": {
"providers": [
"Hibit\\Laravel\\GeoDetectServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}