-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.1 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": "aldeebhasan/laravel-cache-flusher",
"description": "A lightweight package to invalidate cache entries automatically when the cached data changed.",
"type": "library",
"license": "MIT",
"keywords": [
"cache",
"laravel cache",
"flush cach",
"purge cache",
"bulk cach operation",
"laravel"
],
"authors": [
{
"name": "Hasan Deeb",
"email": "aldeeb.91@gmail.com",
"homepage": "https://hasan-deeb.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Aldeebhasan\\LaravelCacheFlusher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aldeebhasan\\LaravelCacheFlusher\\Test\\": "tests/"
}
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"orchestra/testbench": "8.x-dev"
},
"extra": {
"laravel": {
"providers": [
"Aldeebhasan\\LaravelCacheFlusher\\LaravelCacheFlusherProvider"
],
"aliases": {
}
}
},
"scripts": {
"fix": "php-cs-fixer fix src",
"test": "vendor/bin/phpunit tests/Unit/CacheFlusherTest.php"
}
}