-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.15 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.15 KB
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
{
"name": "nextcloud/arbeitszeitcheck",
"description": "Legally compliant time tracking system for German labor law (ArbZG) and GDPR",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Alexander Mäule",
"email": "info@software-by-design.de",
"homepage": "https://software-by-design.de"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-pdo": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "phpunit",
"test:docker": "bash ../../docker/run-app-phpunit.sh arbeitszeitcheck",
"test:security-role-gating:docker": "bash scripts/test-security-role-gating-docker.sh",
"test:unit": "phpunit --testsuite unit",
"test:integration": "phpunit --testsuite integration",
"test:coverage": "phpunit --coverage-html tests/coverage",
"lint": "@php -l lib",
"analyze": "@php -l lib"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.1"
}
},
"autoload": {
"psr-4": {
"OCA\\ArbeitszeitCheck\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\ArbeitszeitCheck\\Tests\\": "tests/"
}
}
}