forked from ARCANEDEV/LaravelSettings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.45 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": "arcanedev/laravel-settings",
"description": "This package allows you to persists configs/settings for Laravel projects.",
"homepage": "https://github.com/ARCANEDEV/LaravelSettings",
"keywords": [
"arcanedev", "laravel", "config", "settings", "json", "array", "database", "db"
],
"authors": [
{
"name": "ARCANEDEV",
"email": "[email protected]",
"homepage": "https://github.com/arcanedev-maroc",
"role": "Developer"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.1.3",
"arcanedev/support": "~4.3.0"
},
"require-dev": {
"orchestra/testbench": "~3.6.0",
"phpunit/phpunit": "~7.0",
"phpunit/phpcov": "~5.0",
"predis/predis": "~1.1",
"illuminate/redis": "~5.6.0"
},
"autoload": {
"psr-4": {
"Arcanedev\\LaravelSettings\\": "src/"
},
"files": ["helpers.php"]
},
"autoload-dev": {
"psr-4": {
"Arcanedev\\LaravelSettings\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Arcanedev\\LaravelSettings\\SettingsServiceProvider"
]
}
},
"suggest": {
"illuminate/redis": "This package allows you to persist the settings into a redis server."
}
}