-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
45 lines (45 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
43
44
45
{
"name": "barchart/laravel-remember-all",
"description": "A Laravel session driver to remember all devices a user has logged in with.",
"keywords": [
"laravel",
"session",
"remember",
"remember all",
"remember many"
],
"homepage": "https://www.barchart.com",
"support": {
"issues": "https://github.com/barchart/laravel-remember-all/issues",
"source": "https://github.com/barchart/laravel-remember-all"
},
"license": "MIT",
"authors": [
{
"name": "Tom Sisk",
"email": "[email protected]",
"homepage": "https://www.barchart.com",
"role": "Developer"
}
],
"require": {
"illuminate/auth": "~5.7|~6.0|~7.0|~8.0|~9.0"
},
"require-dev": {
"mockery/mockery": "~1.0"
},
"autoload": {
"psr-4": {
"Barchart\\Laravel\\RememberAll\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Barchart\\Laravel\\RememberAll\\RememberAllServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}