-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
60 lines (60 loc) · 1.57 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
55
56
57
58
59
60
{
"name": "rennokki/eloquent-settings",
"description": "Eloquent Settings allows you to bind key-value pairs to any Laravel Eloquent model. It supports even casting for boolean, float or integer types.",
"keywords": [
"eloquent",
"laravel",
"settings",
"setting",
"key",
"value",
"cast"
],
"homepage": "https://github.com/renoki-co/eloquent-settings",
"license": "Apache-2.0",
"authors": [
{
"name": "Alex Renoki",
"email": "[email protected]",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"illuminate/database": "^8.83|^9.0.1",
"illuminate/support": "^8.83|^9.0.1"
},
"require-dev": {
"doctrine/dbal": "^2.8|^3.0",
"laravel/legacy-factories": "^1.3",
"mockery/mockery": "^1.5",
"orchestra/database": "^6.28|^7.0",
"orchestra/testbench": "^6.28|^7.0",
"orchestra/testbench-core": "^6.28|^7.0",
"phpunit/phpunit": "^9.5.21"
},
"autoload": {
"psr-4": {
"Rennokki\\Settings\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rennokki\\Settings\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Rennokki\\Settings\\SettingsServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}