generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
55 lines (55 loc) · 1.57 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
{
"name": "juampi92/laravel-query-cache",
"description": "Provide easy interface for caching laravel queries",
"keywords": ["laravel", "cache", "query", "queries", "remember"],
"homepage": "https://github.com/juampi92/laravel-query-cache",
"license": "MIT",
"authors": [
{
"name": "Juan Pablo Barreto",
"email": "juampi92@gmail.com"
}
],
"require": {
"php": ">=7.4",
"illuminate/cache": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"mockery/mockery": "^1.4.2",
"orchestra/testbench": "^v7.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"Juampi92\\LaravelQueryCache\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Juampi92\\LaravelQueryCache\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Juampi92\\LaravelQueryCache\\LaravelQueryCacheServiceProvider"
],
"aliases": {
"LaravelQueryCache": "Juampi92\\LaravelQueryCache\\LaravelQueryCacheFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}