-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcomposer.json
42 lines (42 loc) · 1.17 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
{
"name": "malhal/laravel-geographical",
"description": "Easily add longitude and latitude columns to your records and use inherited functionality for calculating distances",
"keywords": ["laravel", "framework", "latitude", "longitude", "user", "models", "Geographical", "Laravel Geographical", "Laravel-Geographical", "Malcolm Hall", "malhal"],
"license": "MIT",
"authors": [
{
"name": "Malcolm Hall",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"laravel/framework": "5.*|6.*|7.*|8.*|9.*|10.*|11.*"
},
"require-dev": {
"slevomat/coding-standard": "^8.6"
},
"autoload": {
"psr-4": {
"Malhal\\Geographical\\": "src/"
},
"files": [
"src/Geographical.php"
]
},
"autoload-dev": {
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}