-
Notifications
You must be signed in to change notification settings - Fork 98
/
composer.json
41 lines (41 loc) · 978 Bytes
/
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
{
"name": "nextcloud/forms",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"post-install-cmd": [
"@composer bin psalm install --ansi",
"@composer bin cs-fixer install --ansi"
],
"bin": "echo 'bin not installed'",
"cs:fix": "php-cs-fixer fix",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"lint": "find . -name \\*.php -not -path './vendor*/*' -print0 | xargs -0 -n1 php -l",
"test:unit": "phpunit -c tests/phpunit.xml",
"test:integration": "phpunit -c tests/phpunit.integration.xml",
"psalm": "psalm"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"nextcloud/ocp": "dev-stable30",
"phpunit/phpunit": "^9"
},
"require": {
"phpoffice/phpspreadsheet": "^3.3"
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
}
}