generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.3 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
{
"name": "niladam/filament-auto-logout",
"description": "A filament plugin that auto logs out your users if they are idle.",
"keywords": [
"laravel",
"filament-auto-logout",
"afk logout",
"logout on idle",
"logout if idle",
"logout if afk",
"autologout",
"filament auto logout"
],
"homepage": "https://github.com/niladam/filament-auto-logout",
"support": {
"issues": "https://github.com/niladam/filament-auto-logout/issues",
"source": "https://github.com/niladam/filament-auto-logout"
},
"license": "MIT",
"authors": [
{
"name": "Madalin Tache",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"filament/filament": "^3.0",
"spatie/laravel-package-tools": "^1.15.0"
},
"require-dev": {
"laravel/pint": "^1.0"
},
"autoload": {
"psr-4": {
"Niladam\\FilamentAutoLogout\\": "src/"
}
},
"scripts": {
"pint": "vendor/bin/pint",
"format": "vendor/bin/pint"
},
"extra": {
"laravel": {
"providers": [
"Niladam\\FilamentAutoLogout\\AutoLogoutServiceProvider"
]
}
}
}