-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
70 lines (70 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
70
{
"name": "mostafaznv/laracache",
"description": "LaraCache is a customizable cache trait to cache queries on model's events",
"keywords": [
"laravel",
"eloquent",
"orm",
"cache",
"redis",
"memcache",
"laravel 8",
"laravel 9",
"nova 4",
"mostafaznv"
],
"license": "MIT",
"support": {
"issues": "https://github.com/mostafaznv/laracache/issues",
"source": "https://github.com/mostafaznv/laracache",
"docs": "https://github.com/mostafaznv/laracache/blob/master/README.md"
},
"authors": [
{
"name": "mostafaznv",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0.2",
"laravel/framework": "^8.40.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10|^10.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"pestphp/pest": "^1.20|^2.34",
"spatie/pest-plugin-test-time": "^1.0|^2.1"
},
"autoload": {
"psr-4": {
"Mostafaznv\\LaraCache\\": "src/"
},
"files": [
"src/Utils/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Mostafaznv\\LaraCache\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test:ci": "vendor/bin/pest --coverage --coverage-text --coverage-clover=coverage.xml"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Mostafaznv\\LaraCache\\LaraCacheServiceProvider"
]
}
}
}