-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2.44 KB
/
Copy pathcomposer.json
File metadata and controls
86 lines (86 loc) · 2.44 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "eloquent-works/sentinel",
"description": "A comprehensive Laravel moderation and administration suite with reports, cases, queues, automation, audit logs, Exile enforcement, and Masquerade impersonation.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"moderation",
"admin",
"reports",
"cases",
"bans",
"impersonation",
"audit",
"eloquent-works"
],
"authors": [
{
"name": "Eloquent Works"
}
],
"support": {
"issues": "https://github.com/EloquentWorks/Sentinel/issues",
"source": "https://github.com/EloquentWorks/Sentinel"
},
"require": {
"php": "^8.2",
"illuminate/auth": "^12.0|^13.0",
"illuminate/cache": "^12.0|^13.0",
"illuminate/console": "^12.0|^13.0",
"illuminate/contracts": "^12.0|^13.0",
"illuminate/database": "^12.0|^13.0",
"illuminate/events": "^12.0|^13.0",
"illuminate/http": "^12.0|^13.0",
"illuminate/routing": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0",
"illuminate/validation": "^12.0|^13.0",
"eloquent-works/exile": "^1.0",
"eloquent-works/masquerade": "^1.1"
},
"require-dev": {
"larastan/larastan": "^3.10",
"laravel/pint": "^1.18",
"orchestra/testbench": "^9.0|^10.0|^11.0",
"phpunit/phpunit": "^11.0"
},
"suggest": {
"spatie/laravel-permission": "Recommended for assigning Sentinel permissions to moderator and administrator roles."
},
"autoload": {
"psr-4": {
"EloquentWorks\\Sentinel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EloquentWorks\\Sentinel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"EloquentWorks\\Sentinel\\SentinelServiceProvider"
],
"aliases": {
"Sentinel": "EloquentWorks\\Sentinel\\Facades\\Sentinel"
}
}
},
"scripts": {
"format": "pint",
"format:test": "pint --test",
"analyse": "phpstan analyse --memory-limit=1G",
"test": "phpunit",
"quality": [
"@format:test",
"@analyse",
"@test"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}