forked from sacram/laravel-settings
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.22 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": "sacram/laravel-settings",
"description": "Laravel 5 Persistent Settings",
"keywords": [
"laravel",
"laravel-settings",
"persistent-settings"
],
"homepage": "https://github.com/sacram/laravel-settings",
"license": "MIT",
"authors": [
{
"name": "Mohammed Isa",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/filesystem": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/config": "~5.5.0|~5.6.0|~5.7.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^6.0",
"orchestra/testbench": "~3.5.0|~3.6.0",
"orchestra/database": "~3.5.0|3.6.x-dev"
},
"autoload": {
"psr-4": {
"Smartisan\\Settings\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Smartisan\\Settings\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Smartisan\\Settings\\SettingsServiceProvider"
],
"aliases": {
"Settings": "Smartisan\\Settings\\Facades\\Settings"
}
}
}
}