repod/composer.json
Michel Roux 302e8c781b
All checks were successful
repod / xml (push) Successful in 58s
repod / php (push) Successful in 5m41s
repod / nodejs (push) Successful in 4m50s
repod / release (push) Successful in 10m29s
fix: Cannot Open Any Podcasts in Repod if cache missing or missconfigured (close #58)
2024-02-04 09:40:21 +01:00

31 lines
855 B
JSON

{
"name": "nextcloud/repod",
"description": "🔊 Browse, manage and listen to podcasts",
"type": "project",
"license": "AGPL-3.0-or-later",
"version": "1.5.5",
"require-dev": {
"nextcloud/ocp": "^28.0.2",
"psalm/phar": "^5.21.1",
"nextcloud/coding-standard": "^1.2.1"
},
"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",
"psalm:check": "psalm.phar --threads=1 --no-cache --show-info=true",
"psalm:fix": "psalm.phar --no-cache --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType"
},
"autoload": {
"psr-4": {
"OCA\\RePod\\": "lib/",
"OCA\\GPodderSync\\": "stubs/OCA/GPodderSync/"
}
},
"config": {
"platform": {
"php": "8.0"
}
}
}