-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.58 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
49
50
51
52
53
54
55
{
"name": "kretschmann/lggr",
"description": "Web based syslog gui",
"version": "1.5.2",
"type": "project",
"homepage": "https://lggr.io",
"keywords": [
"syslog", "php", "web", "logging"
],
"license": "MIT",
"authors": [
{
"name": "Kai KRETSCHMANN",
"email": "[email protected]",
"homepage": "https://kai.kretschmann.consulting",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://gitlab.kretschmann.software/kai/lggr.git",
"issues": "https://gitlab.kretschmann.software/kai/lggr/-/issues",
"docs": "https://kai.kretschmann.fyi/lggr/"
},
"require": {
"php": ">=7.4",
"twbs/bootstrap": "3.4.1",
"phpauth/phpauth": "^1.2",
"corneltek/getoptionkit": "^2.6",
"apache/log4php": "*",
"fakerphp/faker": "^1.21"
},
"autoload": {
"psr-4": {
"Lggr\\": "inc/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"phpunit/phpunit-selenium": "*",
"php-webdriver/webdriver": "*",
"cyclonedx/cyclonedx-php-composer": "^3.10"
},
"scripts": {
"npm-install": "npm install",
"test": "XDEBUG_MODE=coverage phpunit --log-junit logs/junit.xml --coverage-clover logs/coverage.xml --configuration tests/phpunit.xml --coverage-html pub_phpunit tests",
"localtest": "XDEBUG_MODE=coverage phpunit --log-junit logs/junit.xml --coverage-clover logs/coverage.xml --configuration tests/phpunit_local.xml --coverage-html pub_phpunit tests",
"webtest": "phpunit --log-junit logs/webtest_junit.xml --configuration webtests/phpunit.xml webtests"
},
"config": {
"allow-plugins": {
"cyclonedx/cyclonedx-php-composer": true
}
}
}