-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 930 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
{
"name": "laravie/cabinet",
"description": "Runtime Cache for Laravel Eloquent",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Laravie\\Cabinet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravie\\Cabinet\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"illuminate/cache": "^6.0 || ^7.0 || ^8.0",
"illuminate/database": "^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"laravel/legacy-factories": "^1.0.4",
"orchestra/canvas": "^4.5 || ^5.0 || ^6.1",
"orchestra/testbench": "^4.16 || ^5.18 || ^6.17",
"predis/predis": "^1.1"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}