-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
48 lines (48 loc) · 1.3 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
{
"name": "diwms/nginx-log-analyzer",
"description": "Analyze/Parse Nginx log using php",
"homepage": "https://github.com/diwms/nginx-log-analyzer",
"license": "MIT",
"type": "library",
"version": "1.1.0",
"require": {
"php": "^7.3"
},
"require-dev": {
"doctrine/coding-standard": "^6.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.11.19",
"phpstan/phpstan-phpunit": "^0.11.2",
"phpunit/phpunit": "^8.4",
"roave/security-advisories": "dev-master",
"spatie/phpunit-watcher": "^1.21",
"vimeo/psalm": "^3.6"
},
"autoload": {
"psr-4": {
"Diwms\\NginxLogAnalyzer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Diwms\\NginxLogAnalyzer\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"psalm": "psalm",
"stan": "phpstan analyze -l max src tests",
"cs-fix": "phpcbf",
"cs-check": "phpcs",
"watch": "phpunit-watcher watch",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"code-quality": [
"@psalm",
"@stan",
"@cs-check"
]
}
}