-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.58 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"name": "grafite/query-cache",
"description": "A database query caching system with invalidation automation.",
"license": "MIT",
"keywords": [
"Laravel",
"Eloquent",
"Database",
"Caching"
],
"authors": [
{
"name": "Matt Lantz",
"email": "mattlantz@gmail.com"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0|^12.0|^13.0",
"illuminate/collections": "^11.0|^12.0|^13.0"
},
"require-dev": {
"laravel/pint": "^1.10",
"laravel/legacy-factories": "^1.4",
"livewire/livewire": "dev-main",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.0|^10.0|^11.0",
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"Grafite\\QueryCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Grafite\\QueryCache\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Grafite\\QueryCache\\QueryCacheProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check-style": "vendor/bin/pint --test",
"fix-style": "vendor/bin/pint",
"insights": "vendor/bin/phpinsights",
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover clover.xml && php coverage-checker.php clover.xml 50"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}