forked from anlutro/laravel-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.2 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
{
"name": "jano/settings",
"description": "Persistent settings in Laravel; fork of anlutro/l4-settings",
"license": "AGPL-3.0",
"authors": [
{
"name": "Andrew Ying",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/support": ">=4.1 <6.0",
"laktak/hjson": "^2.0"
},
"suggest": {
"illuminate/filesystem": "Save settings to a JSON file.",
"illuminate/database": "Save settings to a database table."
},
"require-dev": {
"phpunit/phpunit": ">=4.8, <6",
"mockery/mockery": "0.9.*",
"laravel/framework": ">=4.1 <6.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Jano\\Settings\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"aliases": {
"Setting": "Jano\\Settings\\Facade"
},
"providers": [
"Jano\\Settings\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}