This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
epubreader/composer.json

25 lines
730 B
JSON
Raw Normal View History

2023-06-16 14:58:23 +00:00
{
"name": "nextcloud/epubreader",
"description": "EPUB/CBZ/PDF ebook reader",
2023-06-22 11:41:48 +00:00
"version": "1.4.9",
2023-06-16 14:58:23 +00:00
"type": "project",
"license": "AGPL-3.0-or-later",
"require-dev": {
2023-08-11 19:26:35 +00:00
"nextcloud/ocp": "^27.0.2",
2023-08-02 20:04:03 +00:00
"psalm/phar": "^5.14.1",
2023-06-16 14:58:23 +00:00
"nextcloud/coding-standard": "^1.1.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",
2023-06-17 22:08:38 +00:00
"psalm:check": "psalm.phar --threads=1 --no-cache --show-info=true",
2023-06-16 14:58:23 +00:00
"psalm:fix": "psalm.phar --no-cache --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType"
},
"config": {
"platform": {
2023-06-22 11:54:41 +00:00
"php": "8.0"
2023-06-16 14:58:23 +00:00
}
}
2023-06-16 22:16:04 +00:00
}