forked from Loydl/nc-bpm-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 1.13 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
{
"name": "loydl/nc-bpmn-app",
"description": "BPMN editor for Nextcloud",
"type": "project",
"license": "AGPL",
"authors": [
{
"name": "Klaus Herberth",
"email": "klaus@jsxc.org"
}
],
"require": {},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3",
"friendsofphp/php-cs-fixer": "^2.16",
"nextcloud/coding-standard": "^0.3.0",
"christophwurst/nextcloud": "dev-stable20 || dev-stable21",
"vimeo/psalm": "^4.5"
},
"scripts": {
"test": "phpunit --configuration phpunit.xml --fail-on-warning",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;",
"psalm": "psalm --threads=1",
"psalm:clear": "psalm --clear-cache && psalm --clear-global-cache",
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
"psalm:update": "psalm --set-baseline=tests/psalm-baseline.xml && psalm --update-baseline"
}
}