-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
45 lines (45 loc) · 1.17 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
{
"name": "nextcloud/assistant",
"authors": [
{
"name": "Julien Veyssier",
"email": "julien-nc@posteo.net"
},
{
"name": "Sami Finnilä",
"email": "sami.finnila@nextcloud.com"
}
],
"require": {
"php": "^8.1",
"erusev/parsedown": "^1.7",
"henck/rtf-to-html": "^1.2",
"html2text/html2text": "^4.3",
"phpoffice/phpword": "^1.2"
},
"scripts": {
"lint": "find . -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": "psalm.phar --no-cache",
"psalm:update-baseline": "psalm.phar --threads=1 --update-baseline",
"psalm:update-baseline:force": "psalm.phar --threads=1 --update-baseline --set-baseline=tests/psalm-baseline.xml",
"test:unit": "phpunit --config tests/phpunit.xml",
"openapi": "generate-spec --verbose"
},
"require-dev": {
"nextcloud/coding-standard": "^1.1",
"psalm/phar": "^5.16",
"nextcloud/ocp": "dev-master",
"phpunit/phpunit": "^9.5",
"nextcloud/openapi-extractor": "^1.0.0"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.1"
},
"autoloader-suffix": "Assistant"
}
}