-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) 路 808 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) 路 808 Bytes
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
{
"name": "nextcloud/logreader",
"type": "project",
"license": "AGPLv3",
"require-dev": {
"nextcloud/coding-standard": "^v1.5.0",
"nextcloud/ocp": "dev-master",
"phpunit/phpunit": "^12.5",
"vimeo/psalm": "^6.16.1"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.3.16"
},
"sort-packages": true
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -not -path './tests/integration/vendor/*' -print0 | xargs -0 -n200 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"test:unit": "phpunit -c tests/phpunit.xml",
"psalm": "psalm --no-cache --threads=$(nproc)"
},
"autoload-dev": {
"psr-4": {
"OCP\\": "vendor/nextcloud/ocp/OCP"
}
}
}