RePod-Nextcloud-App/composer.json

24 lines
721 B
JSON
Raw Normal View History

2023-06-22 20:10:30 +02:00
{
"name": "nextcloud/repod",
"description": "🔊 Browse, manage and listen to podcasts",
"type": "project",
"license": "AGPL-3.0-or-later",
"require-dev": {
2023-07-25 17:16:20 +02:00
"nextcloud/ocp": "^27.0.1",
"psalm/phar": "^5.14.1",
2023-06-23 09:44:48 +02:00
"nextcloud/coding-standard": "^1.1.1"
2023-06-22 20:10:30 +02:00
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
2023-06-23 09:44:48 +02:00
"psalm:check": "psalm.phar --threads=1 --no-cache --show-info=true",
"psalm:fix": "psalm.phar --no-cache --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType"
2023-06-22 20:10:30 +02:00
},
"config": {
"platform": {
2023-06-23 11:43:05 +02:00
"php": "8.0"
2023-06-22 20:10:30 +02:00
}
}
}