repod/composer.json

31 lines
855 B
JSON
Raw Normal View History

2023-06-22 18:10:30 +00:00
{
"name": "nextcloud/repod",
"description": "🔊 Browse, manage and listen to podcasts",
"type": "project",
"license": "AGPL-3.0-or-later",
2024-03-16 18:26:05 +00:00
"version": "2.2.0",
2023-06-22 18:10:30 +00:00
"require-dev": {
"nextcloud/ocp": "^29.0.0",
2024-05-03 16:39:07 +00:00
"psalm/phar": "^5.24.0",
"nextcloud/coding-standard": "^1.2.1"
2023-06-22 18:10:30 +00: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 07:44:48 +00: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 18:10:30 +00:00
},
2023-08-02 10:13:16 +00:00
"autoload": {
"psr-4": {
"OCA\\RePod\\": "lib/",
"OCA\\GPodderSync\\": "stubs/OCA/GPodderSync/"
}
},
2023-06-22 18:10:30 +00:00
"config": {
"platform": {
2023-06-23 09:43:05 +00:00
"php": "8.0"
2023-06-22 18:10:30 +00:00
}
}
}