-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 2.04 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 2.04 KB
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
45
46
47
48
49
50
51
{
"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": "G DATA CyberDefense AG"
}
],
"require": {
"gdata/vaas": "11.1.0",
"coduo/php-humanizer": "5.0.0"
},
"require-dev": {
"nextcloud/ocp": "v32.0.2",
"psalm/phar": "6.8.2",
"nextcloud/coding-standard": "v1.4.0",
"colinodell/psr-testlogger": "1.3.1",
"phpunit/phpunit": "10.5.58",
"symfony/console": "v6.4.27",
"amphp/http-client": "5.3.4",
"amphp/amp": "3.1.1",
"vlucas/phpdotenv": "5.6.2"
},
"autoload": {
"psr-4": {
"OC\\": "nextcloud-server/lib/private",
"OCP\\": "vendor/nextcloud/ocp/OCP",
"OCA\\Files_Trashbin\\": "nextcloud-server/apps/files_trashbin",
"OCA\\GDataVaas\\": "lib"
}
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './nextcloud-server/*' -not -path './node_modules/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "./vendor/bin/php-cs-fixer fix --dry-run --diff --config=.php-cs-fixer.dist.php .",
"cs:fix": "./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php .",
"psalm": "./vendor/psalm/phar/psalm.phar",
"psalm:check": "composer run psalm -- --threads=1 --monochrome --no-progress --output-format=github --show-info=true",
"psalm:fix": "composer run psalm -- --alter --issues=MissingOverrideAttribute,ClassMustBeFinal,PossiblyUnusedMethod,MissingParamType",
"psalm:clear": "./vendor/psalm/phar/psalm.phar --clear-cache && vendor/psalm/phar/psalm.phar --clear-global-cache"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"platform": {
"php": "8.1"
}
}
}