-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.27 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.27 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
{
"name": "nextcloud/integration_davc",
"authors": [
{
"name": "SebastianKrupinski",
"email": "krupinskis05@gmail.com"
}
],
"require": {
"php": ">=8.2 <=8.5"
},
"require-dev": {
"nextcloud/coding-standard": "^1.5.0",
"phpunit/phpunit": "^11.5",
"psalm/phar": "^6.16"
},
"config": {
"platform": {
"php": "8.2"
},
"sort-packages": true,
"optimize-autoloader": true,
"autoloader-suffix": "DAVC"
},
"autoload": {
"psr-4": {
"OCA\\DAVC\\": "lib/"
}
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm --no-cache --threads=$(nproc)",
"psalm:dev": "@psalm",
"psalm:baseline": "psalm --threads=1 --update-baseline",
"test:unit": "phpunit -c tests/php/phpunit.xml --testsuite 'Unit Tests'",
"test:integration:db": "phpunit -c tests/php/phpunit.xml --testsuite 'Database Tests'",
"test:integration:dav": "phpunit -c tests/php/phpunit.xml --testsuite 'Dav Tests'"
}
}