-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.16 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
{
"name": "eseath/sypexgeo",
"type": "library",
"description": "A PHP package for working with the SypexGeo database file.",
"keywords": ["sypexgeo", "sxgeo", "geoip", "geo", "laravel"],
"license": "MIT",
"support": {
"issues": "https://github.com/Eseath/sypexgeo/issues",
"source": "https://github.com/Eseath/sypexgeo"
},
"authors": [
{
"name": "Ruslan A.",
"email": "ruslan.a94@yandex.com"
}
],
"require": {
"php": "^7.0|^8.0",
"ext-curl": "*",
"ext-zip": "*",
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5|^7.5|^8.5|^9.5",
"orchestra/testbench": "^3.6"
},
"autoload": {
"psr-4": {
"Eseath\\SxGeo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Eseath\\SxGeo\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Eseath\\SxGeo\\SxGeoServiceProvider"
],
"aliases": {
"SxGeo": "Eseath\\SxGeo\\Facades\\SxGeo"
}
}
}
}