forked from iazaran/smart-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.29 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.29 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
{
"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"
],
"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",
"illuminate/cache": ">=8.0",
"illuminate/console": ">=8.0",
"illuminate/contracts": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0|^11.0",
"orchestra/testbench": "^10.0",
"mockery/mockery": "^1.5",
"symfony/var-dumper": "^6.0|^7.0",
"laravel/framework": "12.*"
},
"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
}