-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
40 lines (40 loc) · 976 Bytes
/
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
{
"name": "label84/laravel-auth-log",
"description": "Log user authentication actions in Laravel.",
"type": "library",
"license": "MIT",
"authors": [{
"name": "Label84",
"email": "[email protected]"
}],
"require": {
"php": "^8.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/auth": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"larastan/larastan": "^2.0",
"laravel/pint": "^1.14"
},
"extra": {
"laravel": {
"providers": [
"Label84\\AuthLog\\AuthLogServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Label84\\AuthLog\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Label84\\AuthLog\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}