forked from renoki-co/laravel-eloquent-query-cache
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (52 loc) · 1.37 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": "advil0/laravel-eloquent-query-cache",
"description": "Forked version of renoki-co/laravel-eloquent-query-cache to support Laravel 10.",
"keywords": [
"laravel",
"caching",
"eloquent",
"remember",
"query",
"sql"
],
"license": "Apache-2.0",
"homepage": "https://github.com/advil0/laravel-eloquent-query-cache",
"authors": [
{
"name": "Tyler Neal",
"email": "[email protected]",
"homepage": "https://github.com/advil0",
"role": "Developer"
}
],
"require": {
"illuminate/database": "^8.83|^9.35|^10.1",
"illuminate/support": "^8.83|^9.35|^10.1"
},
"autoload": {
"psr-4": {
"Advil0\\QueryCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Advil0\\QueryCache\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"chelout/laravel-relationship-events": "^1.5|^2.0",
"laravel/legacy-factories": "^1.3",
"livewire/livewire": "dev-master",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.28|^7.0|^8.0.2",
"phpunit/phpunit": "^9.5.25|^10.0.11"
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}