-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
48 lines (48 loc) · 1.12 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
{
"name": "netsells/laravel-geoscope",
"description": "GeoScope is a laravel package that allows you to easily perform distance queries and geofencing based on latitudes and longitudes.",
"type": "library",
"keywords": [
"laravel",
"latitude",
"longitude",
"distance",
"geofence",
"haversine",
"length",
"coordinate",
"geo",
"gps",
"point",
"earth"
],
"license": "MIT",
"authors": [
{
"name": "Adam Hutchison",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"laravel/framework": "^6.6",
"phpunit/phpunit": "^8.4",
"orchestra/testbench": "^4.4",
"mockery/mockery": "^1.3"
},
"extra": {
"laravel": {
"providers": [
"Netsells\\GeoScope\\GeoScopeServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Netsells\\GeoScope\\": "src",
"Netsells\\GeoScope\\Tests\\": "tests"
}
}
}