-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.14 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "mvd81/laravel-is-admin",
"description": "Laravel package, simple functionality to set a user as admin without an advanced role system",
"keywords": [
"Laravel",
"Laravel admin role",
"Laravel admin",
"Laravel is admin"
],
"authors": [
{
"name": "Marcel van Doornen",
"email": "marcel@webbouwplus.nl"
}
],
"version": "3.3",
"license": "MIT",
"require": {
"php": "^8.2",
"illuminate/support": "^12.0"
},
"require-dev": {
"orchestra/testbench": "^10.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"Mvd81\\LaravelIsAdmin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mvd81\\LaravelIsAdmin\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Mvd81\\LaravelIsAdmin\\LaravelIsAdminServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}