-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 964 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
{
"name": "signaturetech/laravel-session-log",
"description": "A package to manage and logout your active session on other devices",
"type": "library",
"keywords": ["sessions", "devices", "browsers"],
"require": {
"php": ">=8.0",
"laravel/framework": ">= 9.0",
"jenssegers/agent": "^2.6"
},
"license": "MIT",
"autoload": {
"psr-4": {
"SignatureTech\\LaravelSessionLog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SignatureTech\\LaravelSessionLog\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Prem Chand Saini",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"version": "1.0.0",
"extra": {
"laravel": {
"providers": [
"SignatureTech\\LaravelSessionLog\\LaravelSessionLogServiceProvider"
]
}
}
}