-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 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
{
"name": "hxd/query-logger",
"description": "This is a package that saves all database queries to a log file with some customizations",
"keywords": [
"hxd",
"query-logger"
],
"homepage": "https://github.com/hxd/query-logger",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Xuan Dung, Ho",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^7.4|^8.0|^8.1|^8.2|^8.3|^8.4",
"illuminate/database": "^6|^7|^8|^9|^10|^11",
"illuminate/http": "^6|^7|^8|^9|^10|^11",
"illuminate/log": "^6|^7|^8|^9|^10|^11"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"Hxd\\QueryLogger\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Hxd\\QueryLogger\\QueryLoggerServiceProvider"
],
"aliases": {
"QueryLogger": "Hxd\\QueryLogger\\QueryLoggerFacade"
}
}
}
}