-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 968 Bytes
/
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
{
"name": "rolfhaug/laravel-model-settings",
"description": "A package that gives you a fluent api to add key/value settings to any Eloquent model",
"type": "package",
"license": "mit",
"authors": [
{
"name": "Rolf Haug",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {},
"require-dev": {
"phpunit/phpunit": "^7.0",
"nunomaduro/collision": "^2.0",
"fzaninotto/faker": "^1.8@dev",
"illuminate/database": "^5.8@dev"
},
"extra": {
"laravel": {
"providers": [
"RolfHaug\\ModelSettings\\ModelSettingsServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"RolfHaug\\ModelSettings\\": "src/",
"RolfHaug\\ModelSettings\\Commands\\": "src/commands/"
}
},
"autoload-dev": {
"classmap": [
"tests"
]
}
}