forked from tiborsulyan/autologout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 999 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
41
42
43
44
45
46
47
{
"name": "tiborsulyan/autologout",
"description": "Automatically warns and logs out users after a configured timeout",
"keywords": [
"flarum",
"session",
"logout"
],
"type": "flarum-extension",
"license": "MIT",
"require": {
"flarum/core": ">=0.1.0-beta.15 <0.1.0-beta.16"
},
"authors": [
{
"name": "Tibor Sulyán",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/tiborsulyan/autologout/issues",
"source": "https://github.com/tiborsulyan/autologout"
},
"autoload": {
"psr-4": {
"Tiborsulyan\\Autologout\\": "src/"
},
"files": [
"src/Overrides/Http/Rememberer.php"
]
},
"extra": {
"flarum-extension": {
"title": "Auto Logout",
"category": "feature",
"icon": {
"name": "fas fa-sign-out-alt",
"backgroundColor": "",
"color": ""
}
},
"flagrow": {
"discuss": ""
}
}
}