-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 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
{
"name": "freshbitsweb/laravel-log-enhancer",
"description": "Make debugging easier by adding more data to your laravel logs",
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"monolog/monolog": "^1.23|^2.1.1|^3.2"
},
"require-dev": {
"phpunit/phpunit": "^9.3.9|^10.5|^11.0",
"orchestra/testbench": "^6.23.0|^7.0.0|^8.0|^9.0|^10.0"
},
"license": "MIT",
"authors": [
{
"name": "Gaurav Makhecha",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Freshbitsweb\\LaravelLogEnhancer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Freshbitsweb\\LaravelLogEnhancer\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Freshbitsweb\\LaravelLogEnhancer\\LaravelLogEnhancerServiceProvider"
]
}
}
}