-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.67 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
56
57
58
59
60
{
"name": "onlime/laravel-sql-reporter",
"description": "Log SQL queries in Laravel framework",
"keywords": ["laravel", "sql", "log", "logger", "sql logger", "log sql queries", "log sql", "sql log"],
"license": "MIT",
"authors": [
{
"name": "Philip Iezzi",
"email": "[email protected]"
},
{
"name": "Onlime GmbH",
"homepage": "https://www.onlime.ch/"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.15|^11.0",
"illuminate/filesystem": "^10.15|^11.0",
"illuminate/container": "^10.15|^11.0"
},
"require-dev": {
"laravel/pint": "^1.18",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^3.0"
},
"autoload": {
"psr-4": {
"Onlime\\LaravelSqlReporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Onlime\\LaravelSqlReporter\\Providers\\SqlReporterServiceProvider"
]
},
"thanks": {
"name": "mnabialek/laravel-version",
"url": "https://github.com/mnabialek/laravel-version"
},
"suggest": {
"stevebaumann/location": "GeoIP country detection for log headers information",
"symfony/thanks": "Star packages you use running 'composer thanks' command"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}