-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
37 lines (37 loc) · 1.04 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
{
"name": "menarasolutions/geographer-laravel",
"type": "library",
"description": "Geographer integration classes for Laravel and Lumen",
"keywords": ["laravel","geographer","geolocation","localization"],
"homepage": "https://github.com/MenaraSolutions/geographer-laravel",
"license": "MIT",
"authors": [
{
"name": "Denis Mysenko",
"email": "denis@menara.com.au",
"homepage": "https://www.menara.com.au"
}
],
"require": {
"php": ">=5.5.0",
"menarasolutions/geographer": "^0.3.0"
},
"require-dev": {
"illuminate/support": "5.*"
},
"autoload": {
"psr-4": {
"MenaraSolutions\\Geographer\\Integrations\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"MenaraSolutions\\Geographer\\Integrations\\LaravelServiceProvider"
],
"aliases": {
"Geographer": "MenaraSolutions\\Geographer\\Integrations\\LaravelFacade"
}
}
}
}