-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 975 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 975 Bytes
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
{
"name": "devuniverse/settings",
"description": "A laravel Settings manager",
"homepage": "https://github.com/devuniverse/settings",
"keywords": [
"settings",
"laravel setting",
"laravel settings"
],
"license": "MIT",
"authors": [
{
"name": "Devuniverse",
"email": "ishimwe@gmail.com"
}
],
"autoload": {
"psr-4": {
"Devuniverse\\Settings\\": "/src"
},
"files": [
"src/Support/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Devuniverse\\Settings\\SettingsServiceProvider"
]
}
},
"minimum-stability": "stable",
"require": {
"laravel/framework": "5.8.*",
"Belphemur/laravel-gettext": "6.x",
"doctrine/dbal": "^2.9"
},
"require-dev": {
"laravel/laravel": "5.8.*"
}
}