-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (37 loc) · 1.05 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
{
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"psalm": "psalm",
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
"psalm:update-baseline": "psalm --threads=1 --update-baseline",
"test:unit": "vendor/bin/phpunit -c phpunit.xml"
},
"require-dev": {
"nextcloud/coding-standard": "^1.1",
"nextcloud/ocp": "dev-master",
"vimeo/psalm": "^5.9",
"sabre/vobject": "^4.5",
"rector/rector": "^1.0",
"phpunit/phpunit": "^9.6"
},
"require": {
"php": "^8.0.2",
"christophwurst/kitinerary": "^0.2.4",
"christophwurst/kitinerary-bin": "^0.4.1",
"christophwurst/kitinerary-flatpak": "^0.3.1",
"christophwurst/kitinerary-sys": "^0.2.1"
},
"config": {
"platform": {
"php": "8.0.2"
}
},
"autoload-dev": {
"psr-4": {
"OCP\\": "vendor/nextcloud/ocp/OCP",
"OCA\\WorkflowKitinerary\\": "lib"
}
}
}