forked from Sendent-B-V/Sendent-App-for-Nextcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
24 lines (24 loc) · 711 Bytes
/
composer.json
File metadata and controls
24 lines (24 loc) · 711 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
{
"name": "sendent/serverapp",
"description": "Test",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Léon van de Broek"
}
],
"scripts": {
"test": "phpunit -c phpunit.xml",
"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 \"{}\" \\;"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3",
"nextcloud/coding-standard": "^0.5.0",
"friendsofphp/php-cs-fixer": "^2.18",
"christophwurst/nextcloud": "^20.0 || ^21.0 || ^22.0",
"vimeo/psalm": "^4.5"
}
}