-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.02 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
45
46
47
48
49
50
51
52
53
54
{
"name": "bavix/laravel-settings",
"description": "Keep user settings easy.",
"keywords": [
"settings",
"laravel",
"laravel5",
"user-settings",
"setting",
"config",
"laravel5-package",
"cfg",
"configure"
],
"minimum-stability": "stable",
"homepage": "https://github.com/bavix/laravel-settings",
"license": "MIT",
"authors": [
{
"name": "Babichev Maxim",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"illuminate/database": "^5.5|^6.0|^7.0|^8.0"
},
"require-dev": {
"infection/infection": "^0.14",
"orchestra/testbench": "^4.2|^5.0",
"phpstan/phpstan": "^0.11",
"phpunit/phpunit": "^8.4"
},
"autoload": {
"psr-4": {
"Bavix\\Settings\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bavix\\Settings\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bavix\\Settings\\SettingsServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}