forked from Grimthorr/laravel-user-settings
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
44 lines (44 loc) · 1.17 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
{
"name": "ricardoboss/laravel-user-settings",
"description": "Simple user settings facade for Laravel.",
"homepage": "https://github.com/ricardoboss/laravel-user-settings",
"license": "MIT",
"authors": [
{
"name": "Grimthorr",
"email": "phil@hughesbox.co.uk",
"homepage": "http://hughesbox.co.uk"
},
{
"name": "Ricardo Boss",
"email": "contact@ricardoboss.de",
"homepage": "https://ricardoboss.de"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "^8.0",
"illuminate/config": "^8.0",
"illuminate/database": "^8.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Grimthorr\\LaravelUserSettings\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Grimthorr\\LaravelUserSettings\\ServiceProvider"
],
"aliases": {
"Setting": "Grimthorr\\LaravelUserSettings\\Facade"
}
}
}
}