-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
66 lines (66 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "alajusticia/laravel-logins",
"description": "Sessions and Sanctum tokens tracking in Laravel apps, users notification on new login, multiple remember tokens, IP geolocation, User-Agent parser",
"keywords": [
"laravel",
"security",
"authentication",
"user-agent",
"login",
"remember",
"session",
"ip",
"guard"
],
"license": "MIT",
"authors": [
{
"name": "Anthony Lajusticia",
"email": "anthonylajusticia@gmail.com",
"homepage": "https://anthonylajusticia.com"
}
],
"require": {
"php": "^8.1",
"alajusticia/laravel-expirable": "^2.3",
"illuminate/auth": "^10.0|^11.0",
"illuminate/collections": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0",
"illuminate/queue": "^10.0|^11.0",
"illuminate/session": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"nesbot/carbon": "^2.67|^3.0"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^10.0.7",
"orchestra/testbench": "^8.0",
"laravel/sanctum": "^3.3",
"whichbrowser/parser": "^2.1",
"jenssegers/agent": "^2.6",
"buggregator/trap": "^1.4",
"stevebauman/location": "^7.1",
"livewire/livewire": "^3.4",
"laravel/fortify": "^1.21"
},
"autoload": {
"psr-4": {
"ALajusticia\\Logins\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ALajusticia\\Logins\\Tests\\": "tests",
"ALajusticia\\Logins\\Tests\\Database\\Factories\\": "tests/database/factories"
}
},
"extra": {
"laravel": {
"providers": [
"ALajusticia\\Logins\\LoginsServiceProvider"
]
}
}
}