-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 778 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 778 Bytes
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
{
"name": "cesargb/php-log-rotation",
"description": "PHP Class to rotate log files",
"type": "library",
"keywords": [
"php",
"log",
"rotation"
],
"homepage": "https://github.com/cesargb/php-log-rotation",
"authors": [
{
"name": "Cesar Garcia",
"email": "cesargb@gmail.com"
}
],
"license": "MIT",
"require": {
"php": "^8.0"
},
"autoload": {
"psr-4": {
"Cesargb\\Log\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cesargb\\Log\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"phpunit/phpunit": "^11.5|^12.5.22|^13.1.6",
"phpstan/phpstan": "^1.9"
}
}