-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 958 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 958 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
39
40
41
{
"name": "touchdesign/logrotate",
"authors": [
{
"name": "Christin Gruber",
"email": "c.gruber@touchdesign.de"
}
],
"license": "proprietary",
"homepage": "https://github.com/touchdesign/logrotate",
"keywords": [],
"description": "Logrotate package",
"require": {
"php": ">=7.4",
"symfony/filesystem": "^5.2",
"symfony/finder": "^5.2",
"symfony/monolog-bundle": "^3.6",
"monolog/monolog": "^2.1",
"symfony/console": "^5.2"
},
"autoload": {
"psr-4": {
"Touchdesign\\Logrotate\\": "src/"
}
},
"autoload-dev":{
"psr-4": {
"Touchdesign\\Logrotate\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/var-dumper": "^5.2",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"tests": "./tools/phpunit tests",
"lint:php": "./tools/phpcs --standard=phpcs.xml *",
"fix:php": "./tools/phpcbf --standard=phpcs.xml *"
}
}