-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
48 lines (48 loc) · 1.03 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": "schuhwerk/php-error-log-viewer",
"description": "A single-file GUI for your php log files which groups similar errors. Written in PHP and Vue.js.",
"keywords": [
"log",
"logs",
"error",
"errors",
"gui",
"vue",
"single-file",
"dev",
"helper"
],
"homepage": "https://github.com/schuhwerk/php-error-log-viewer",
"license": "MIT",
"authors": [
{
"name": "schuhwerk",
"email": "vitus.schuhwerk@gmail.com"
}
],
"require": {
"php": "^7 || ^8"
},
"support": {
"issues": "https://github.com/schuhwerk/php-error-log-viewer/issues",
"source": "https://github.com/schuhwerk/php-error-log-viewer"
},
"type": "development-tool",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7"
},
"scripts": {
"test": "phpunit",
"phpcs": [
"vendor/bin/phpcs --standard=phpcs.xml --extensions=php"
]
}
}