-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.22 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
{
"name": "nextcloud/nextmail",
"description": "This application allows you to manage your Stalwart backend directly within Nextcloud.\nUsers, groups and authentication information will be directly integrated into Nextcloud.",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Jean-Yves",
"email": "[email protected]",
"homepage": "https://github.com/docjyJ"
}
],
"autoload": {
"psr-4": {
"OCA\\Nextmail\\": "lib/"
}
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalter:check": "psalter --issues=all --dry-run",
"psalter:fix": "psalter --issues=all",
"psalm": "psalm --no-cache",
"openapi": "generate-spec"
},
"require": {
"php": "^8.2"
},
"require-dev": {
"doctrine/dbal": "4.2.1",
"nextcloud/coding-standard": "v1.3.2",
"nextcloud/ocp": "v30.0.2",
"nextcloud/openapi-extractor": "v1.2.2",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "6.x-dev"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.2.4"
}
}
}