-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 2.37 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "oldnomad/calibre_opds",
"description": "Simple OPDS server that uses Calibre database as a backend.",
"type": "project",
"keywords": [],
"homepage": "https://gitlab.com/oldnomad/calibre_opds",
"readme": "README.md",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Alec Kojaev",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"OCA\\Calibre2OPDS\\": "lib",
"OCP\\": "vendor/nextcloud/ocp/OCP"
}
},
"autoload-dev": {
"psr-4": {
"Stubs\\": "tests/stubs"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "nextcloud/translationtool",
"version": "0-dev",
"dist": {
"url": "https://github.com/nextcloud/docker-ci/raw/master/translations/translationtool/translationtool.phar",
"type": "file"
}
}
}
],
"require-dev": {
"nextcloud/ocp": "^26",
"nextcloud/coding-standard": "^1",
"nextcloud/translationtool": "^0-dev",
"php-parallel-lint/php-parallel-lint": "^1",
"psalm/phar": "^5",
"phpunit/phpunit": "^10"
},
"scripts": {
"cs": "php-cs-fixer fix --using-cache=no --dry-run --diff",
"lint": "parallel-lint ./appinfo ./lib",
"phpunit": "XDEBUG_MODE=coverage phpunit",
"psalm": "psalm.phar --config=psalm.xml --no-cache",
"tests": [
"@lint",
"@cs",
"@psalm",
"@phpunit"
],
"translate:scan": "php ./vendor/nextcloud/translationtool/translationtool.phar create-pot-files",
"translate:generate": "php ./vendor/nextcloud/translationtool/translationtool.phar convert-po-files",
"icon:rebuild": "./generate-icon.sh"
},
"scripts-descriptions": {
"cs": "Checks that the code conforms to the coding standard.",
"lint": "Runs unit tests.",
"phpunit": "Run all unit tests.",
"psalm": "Runs static analysis.",
"tests": "Runs all available tests.",
"translate:scan": "Generates POT file for translations.",
"translate:generate": "Generates translation files from PO files.",
"icon:rebuild": "Rebuilds app icon from SVG"
}
}