-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 993 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 993 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
32
33
34
35
36
37
{
"name": "nextcloud/whiteboard",
"config": {
"autoloader-suffix": "Whiteboard",
"audit": {
"ignore": {
"PKSA-y2cr-5h3j-g3ys": "Temporary CI exception until firebase/php-jwt can be upgraded without changing existing shared-secret requirements."
}
},
"optimize-autoloader": true,
"platform": {
"php": "8.4"
},
"sort-packages": true
},
"license": "AGPL",
"require": {
"php": "^8.0",
"firebase/php-jwt": "^6.10"
},
"require-dev": {
"nextcloud/coding-standard": "^1.3.2",
"nextcloud/ocp": "dev-master",
"phpunit/phpunit": "^12",
"psalm/phar": "^6.0",
"psr/log": "^3.0.2",
"roave/security-advisories": "dev-latest",
"sabre/dav": "^4.3"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run",
"cs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix",
"psalm": "psalm.phar",
"test:unit": "phpunit -c tests/phpunit.xml"
}
}