-
-
Notifications
You must be signed in to change notification settings - Fork 174
/
composer.json
43 lines (43 loc) · 1.16 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
{
"require": {
"doctrine/inflector": "1.4.*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-pdo": "*",
"guzzlehttp/psr7": "^2",
"marcelklehr/link-preview": "^3.0.5",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"rowbot/url": "^3.0",
"xantios/mimey": "^2.1",
"fivefilters/readability.php": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5.26",
"nextcloud/coding-standard": "^1.0.0",
"vimeo/psalm": "5.x",
"nextcloud/ocp": "dev-master"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.1.2"
}
},
"autoload": {
"psr-4": {
"OCA\\Bookmarks\\": "lib/"
}
},
"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",
"test:unit": "phpunit -c tests/phpunit.xml",
"psalm": "psalm --output-format=github --no-progress --no-cache --use-baseline=psalm-baseline.xml",
"psalm-new-baseline": "psalm --output-format=github --no-progress --no-cache --set-baseline=psalm-baseline.xml",
"psalm-ui": "psalm --no-cache"
}
}