55 строки
1.3 KiB
JSON
55 строки
1.3 KiB
JSON
{
|
|
"name": "nextcloud/polls",
|
|
"type": "project",
|
|
"license": "AGPLv3",
|
|
"authors": [
|
|
{
|
|
"name": "Vinzenz Rosenkranz"
|
|
},
|
|
{
|
|
"name": "Kai Schröer"
|
|
},
|
|
{
|
|
"name": "René Gieling"
|
|
}
|
|
],
|
|
"config": {
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true,
|
|
"autoloader-suffix": "Polls",
|
|
"platform": {
|
|
"php": "8.0"
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OCA\\Polls\\": "lib/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"OCA\\Polls\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"league/factory-muffin": "^3.0",
|
|
"league/factory-muffin-faker": "^2.0",
|
|
"nextcloud/coding-standard": "^1.0",
|
|
"nextcloud/ocp": "dev-stable27",
|
|
"doctrine/dbal": "^3.6"
|
|
},
|
|
"scripts": {
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
|
"cs:fix": "php-cs-fixer fix",
|
|
"psalm": "psalm --no-diff",
|
|
"psalm:fix": "psalm --alter --php-version=8.0 --issues=MissingReturnType,InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType",
|
|
"psalm:info": "psalm --no-diff --show-info=true",
|
|
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
|
|
"psalm:baseline:update": "psalm --update-baseline"
|
|
},
|
|
"require": {
|
|
"league/commonmark": "^2.1",
|
|
"rlanvin/php-rrule": "^2.3"
|
|
}
|
|
}
|