-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 986 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 986 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": "poisa/settings",
"description": "A Laravel multi-tenant database configuration/settings manager",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Julian Vidal",
"email": "julian@julianvidal.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0.0"
},
"extra": {
"laravel": {
"providers": [
"Poisa\\Settings\\SettingsServiceProvider"
],
"aliases": {
"Settings": "Poisa\\Settings\\Facades\\Settings"
}
}
},
"autoload": {
"psr-4": {
"Poisa\\Settings\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Poisa\\Settings\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "~6.5",
"orchestra/testbench": "~3.5",
"limedeck/phpunit-detailed-printer": "~3.0"
}
}