-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.01 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
{
"name": "corbinjurgens/quaip",
"description": "Database and Sessions for UA and IP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Corbin Jurgens",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"suggest": {
"stevebauman/location": ">=4.0.1 Required if using the default Ip loaders",
"grimzy/laravel-mysql-spatial": "^4.0, ^3.0, ^2.0, or ^1.0 depending on your Laravel and Mysql version. Required if using the default Ip Model for langitude/longitude coordinates",
"whichbrowser/parser": ">=2.0.18 Required if using the default User-Agent loaders"
},
"require": {
},
"autoload": {
"psr-4": {
"Corbinjurgens\\Quaip\\": "src/"
},
"files": [
]
},
"extra": {
"laravel": {
"providers": [
"Corbinjurgens\\Quaip\\ServiceProvider"
],
"aliases":
{
"Quaip": "Corbinjurgens\\Quaip\\QuaipContainer"
}
}
}
}