-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
37 lines (37 loc) · 877 Bytes
/
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
{
"name": "ilzrv/laravel-slow-query-detector",
"description": "Laravel Slow DB Query Detector",
"require": {
"php": "^8.0",
"illuminate/support": "^9.0|^10.0"
},
"license": "MIT",
"authors": [
{
"name": "Ilia Lazarev",
"email": "me@ilzrv.com"
}
],
"autoload": {
"psr-4": {
"Ilzrv\\LaravelSlowQueryDetector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ilzrv\\LaravelSlowQueryDetector\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Ilzrv\\LaravelSlowQueryDetector\\ServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^9.5|^10.0",
"orchestra/testbench": "^7.0|^8.0",
"timacdonald/log-fake": "^2.0"
}
}