-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.29 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
40
41
42
43
44
{
"name": "nextcloud/gdatavaas",
"description": "This app aims to provide an additional layer of security to your Nextcloud instance by enabling automatic and manual scanning of files for malicious content.",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Lennart Dohmann"
}
],
"require": {
"gdata/vaas": "v9.0.5",
"coduo/php-humanizer": "^5.0"
},
"require-dev": {
"nextcloud/ocp": "v30.0.0",
"psalm/phar": "5.26.1",
"nextcloud/coding-standard": "v1.3.1",
"phpunit/phpunit": "10.5.36",
"symfony/console": "6.4.12"
},
"autoload": {
"psr-4": {
"OCP\\": "vendor/nextcloud/ocp/OCP",
"OCA\\GDataVaas\\": "lib"
}
},
"scripts": {
"lint": "find lib -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": "vendor/psalm/phar/psalm.phar --threads=1",
"psalm:clear": "vendor/psalm/phar/psalm.phar --clear-cache && vendor/psalm/phar/psalm.phar --clear-global-cache",
"psalm:fix": "vendor/psalm/phar/psalm.phar --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"platform": {
"php": "8.1"
}
}
}