forked from nextcloud/collectives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.08 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
{
"name": "nextcloud/collectives",
"description": "Nextcloud Collectives",
"license": "AGPL-3.0-or-later",
"config": {
"platform": {
"php": "8.0.2"
},
"sort-packages": true
},
"require": {
"php": ">=8.0.2",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"teamtnt/tntsearch": "^4.2"
},
"require-dev": {
"ext-dom": "*",
"behat/behat": "^3.14",
"guzzlehttp/guzzle": "^7.8",
"nextcloud/coding-standard": "^1.2.1",
"nextcloud/ocp": "dev-stable27",
"phpunit/phpunit": "^9.6",
"psalm/phar": "^5.25",
"rector/rector": "^1.2.0"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm.phar",
"psalm:update-baseline": "psalm.phar --threads=1 --update-baseline --set-baseline=tests/psalm-baseline.xml",
"test:unit": "phpunit -c tests/phpunit.xml"
}
}