forked from anlutro/laravel-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.12 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
{
"name": "anlutro/l4-settings",
"description": "Persistent settings in Laravel.",
"license": "MIT",
"authors": [
{
"name": "Andreas Lutro",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": ">=4.2 <8.0",
"illuminate/cache": ">=4.2 <8.0"
},
"suggest": {
"illuminate/filesystem": "Save settings to a JSON file.",
"illuminate/database": "Save settings to a database table."
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.2",
"laravel/framework": ">=4.2"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"anlutro\\LaravelSettings\\": "src/"
}
},
"extra": {
"laravel": {
"aliases": {
"Setting": "anlutro\\LaravelSettings\\Facade"
},
"providers": [
"anlutro\\LaravelSettings\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}