blob: 94bf18575c3525fecb38725b687d903f3403fc82 (
plain)
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
|
{
"name": "lightscale/laralight-auth-log",
"description": "Log authentication laravel application to database",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Lightscale\\LaralightAuthLog\\": "src/"
}
},
"authors": [
{
"name": "Sam Light",
"email": "sam@lightscale.co.uk"
}
],
"require": {},
"extra": {
"laravel": {
"providers": [
"Lightscale\\LaralightAuthLog\\AuthLogServiceProvider"
]
}
}
}
|