-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.98 KB
/
Copy pathcomposer.json
File metadata and controls
90 lines (90 loc) · 2.98 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "iazaran/smart-cache",
"description": "Smart Cache is a caching optimization package designed to enhance the way your Laravel application handles data caching. It intelligently manages large data sets by compressing, chunking, or applying other optimization strategies to keep your application performant and efficient.",
"keywords": [
"smart-cache",
"smart cache laravel",
"laravel package",
"laravel caching",
"cache optimization",
"data compression",
"cache chunking",
"laravel performance",
"redis cache",
"file cache",
"cache management",
"laravel cache driver",
"cache serialization",
"cache strategies",
"php caching",
"laravel optimization",
"stale-while-revalidate",
"swr",
"cache stampede prevention",
"cost-aware eviction",
"self-healing cache",
"write deduplication",
"psr-16",
"laravel cache replacement"
],
"homepage": "https://github.com/iazaran/smart-cache",
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/iazaran/smart-cache/issues",
"source": "https://github.com/iazaran/smart-cache"
},
"authors": [
{
"name": "Ismael Azaran",
"email": "eazaran@gmail.com"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^8.0||^9.0||^10.0||^11.0||^12.0||^13.0",
"illuminate/cache": "^8.0||^9.0||^10.0||^11.0||^12.0||^13.0",
"illuminate/console": "^8.0||^9.0||^10.0||^11.0||^12.0||^13.0",
"illuminate/contracts": "^8.0||^9.0||^10.0||^11.0||^12.0||^13.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.33||^10.5.62||^11.5.50||^12.5.22||^13.1.6",
"orchestra/testbench": "^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
"mockery/mockery": "^1.5",
"symfony/var-dumper": "^5.4|^6.0|^7.0|^8.0"
},
"suggest": {
"ext-zlib": "Required for compressing cached data using gzip (strongly recommended)",
"ext-redis": "Recommended when utilizing the Redis cache driver for better performance",
"ext-memcached": "Recommended when using the Memcached cache driver for distributed caching"
},
"autoload": {
"psr-4": {
"SmartCache\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"SmartCache\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testdox",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage --testdox"
},
"extra": {
"laravel": {
"providers": [
"SmartCache\\Providers\\SmartCacheServiceProvider"
],
"aliases": {
"SmartCache": "SmartCache\\Facades\\SmartCache"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}