-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
composer.json
52 lines (52 loc) · 1.36 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
{
"name": "rennokki/laravel-eloquent-query-cache",
"description": "Adding cache on your Laravel Eloquent queries' results is now a breeze.",
"keywords": [
"laravel",
"caching",
"eloquent",
"remember",
"query",
"sql"
],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/laravel-eloquent-query-cache",
"authors": [
{
"name": "Alex Renoki",
"email": "[email protected]",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"illuminate/database": "^10.5|^11.33",
"illuminate/support": "^10.5|^11.33"
},
"autoload": {
"psr-4": {
"Rennokki\\QueryCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rennokki\\QueryCache\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"chelout/laravel-relationship-events": "^1.5|^2.0|^3.0",
"laravel/legacy-factories": "^1.4",
"livewire/livewire": "dev-main",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.1.1|^9",
"phpunit/phpunit": "^9.5.25|^10|^11"
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}