40 строки
1.1 KiB
JSON
40 строки
1.1 KiB
JSON
{
|
|
"name": "nextcloud/files_fulltextsearch",
|
|
"description": "files_fulltextsearch",
|
|
"minimum-stability": "stable",
|
|
"license": "agpl",
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"classmap-authoritative": true,
|
|
"autoloader-suffix": "Files_FullTextSearch",
|
|
"platform": {
|
|
"php": "7.4"
|
|
}
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Maxence Lange",
|
|
"email": "maxence@artificial-owl.com"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OCA\\Files_FullTextSearch\\": "lib/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"cs:fix": "php-cs-fixer fix",
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
|
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -not -path './node_modules/*' -print0 | xargs -0 -n1 php -l",
|
|
"psalm": "psalm",
|
|
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
|
|
"psalm:update-baseline": "psalm --threads=1 --update-baseline"
|
|
},
|
|
"require": {
|
|
"artificial-owl/my-small-php-tools": "~23"
|
|
},
|
|
"require-dev": {
|
|
"nextcloud/coding-standard": "^1.0"
|
|
}
|
|
}
|