-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
39 lines (39 loc) · 1.09 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"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": "[email protected]"
}
],
"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"
}
}