-
Notifications
You must be signed in to change notification settings - Fork 64
/
composer.json
41 lines (41 loc) · 1.18 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
{
"name": "kassner/log-parser",
"type": "library",
"description": "PHP Log Parser Library",
"keywords": ["log", "apache", "parser", "nginx", "format", "log-format"],
"homepage": "http://github.com/kassner/log-parser",
"license": "Apache-2.0",
"authors": [
{
"name": "Rafael Kassner",
"email": "[email protected]",
"homepage": "https://www.kassner.com.br/",
"role": "Developer"
}
],
"require": {
"php": ">=7.4.0"
},
"autoload": {
"psr-4": {
"Kassner\\LogParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kassner\\LogParser\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"tools/phpunit",
"tools/phpstan",
"tools/php-cs-fixer fix src --diff --dry-run -v --rules=@Symfony",
"tools/php-cs-fixer fix tests --diff --dry-run -v --rules=@Symfony",
"tools/phpmd src xml codesize,unusedcode,naming,design",
"tools/phpmd tests xml codesize,unusedcode,naming,design",
"tools/phpcpd src",
"tools/phpcpd tests"
]
}
}