-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.84 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.84 KB
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
{
"name": "nextcloud/forum",
"description": "A community-driven forum built right into your Nextcloud instance",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Chen Asraf",
"email": "contact@casraf.dev",
"homepage": "https://casraf.dev"
}
],
"autoload": {
"psr-4": {
"OCA\\Pantry\\": "lib/"
}
},
"scripts": {
"post-install-cmd": [
"@php -r \"if (getenv('COMPOSER_DEV_MODE') !== '0') { passthru(getenv('COMPOSER_BINARY').' bin all install --ansi'); }\""
],
"post-update-cmd": [
"@php -r \"if (getenv('COMPOSER_DEV_MODE') !== '0') { passthru(getenv('COMPOSER_BINARY').' bin all update --ansi'); }\""
],
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './gen/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm --threads=1 --no-cache",
"test:unit": "phpunit tests -c tests/phpunit.xml --colors=always --fail-on-warning --fail-on-risky",
"test:integration": "phpunit tests -c tests/phpunit.integration.xml --colors=always --fail-on-warning --fail-on-risky",
"openapi": "generate-spec"
},
"require": {
"php": "^8.2",
"sabre/vobject": "^4.5",
"sabre/xml": "^2.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"nextcloud/ocp": "dev-stable32",
"phpunit/phpunit": "^11.0"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"audit": {
"ignore": [
"PKSA-5jz8-6tcw-pbk4",
"PKSA-z3gr-8qht-p93v"
]
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.2"
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
}
}