-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.29 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
{
"name": "cesargb/laravel-logs-rotate",
"description": "Rotate files log with compression",
"keywords": [
"laravel",
"logs",
"rotate",
"compression"
],
"homepage": "https://github.com/cesargb/laravel-logs-rotate",
"authors": [
{
"name": "Cesar Garcia",
"email": "[email protected]",
"homepage": "https://github.com/cesargb",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php" : "^7.4 | ^8.0",
"illuminate/config": "^6.20|^8.0",
"illuminate/console": "^6.20|^8.0",
"illuminate/log": "^6.20|^8.0",
"illuminate/support": "^6.20|^8.0",
"monolog/monolog": "^2.0",
"cesargb/php-log-rotation": "^2.4"
},
"require-dev": {
"orchestra/testbench": "^4.18|^6.20",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"Cesargb\\LaravelLog\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cesargb\\LaravelLog\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
},
"extra": {
"laravel": {
"providers": [
"Cesargb\\LaravelLog\\RotateServiceProvider"
]
}
}
}