Skip to content

Commit

Permalink
Rationalize dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Chemineau <louis@chmn.me>
  • Loading branch information
artonge committed Dec 12, 2023
1 parent db51bc4 commit 60c9e05
Show file tree
Hide file tree
Showing 4 changed files with 419 additions and 2,048 deletions.
15 changes: 8 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,22 @@
"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",
"psalm": "psalm --threads=1",
"psalm:update-baseline": "psalm --threads=1 --update-baseline",
"psalm:clear": "psalm --clear-cache && psalm --clear-global-cache",
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
"psalm": "psalm.phar --threads=1",
"psalm:update-baseline": "psalm.phar --threads=1 --update-baseline",
"psalm:clear": "psalm.phar --clear-cache && psalm --clear-global-cache",
"psalm:fix": "psalm.phar --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
"test:unit": "echo 'Only testing installation of the app'"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"nextcloud/coding-standard": "1.1.1",
"nextcloud/ocp": "dev-master",
"phpunit/phpunit": "^9",
"sabre/dav": "^4.2.1",
"vimeo/psalm": "^4.22"
"nextcloud/ocp": "dev-master",
"symfony/console": "^3.4",
"psalm/phar": "^5.17"
},
"require": {
"hexogen/kdtree": "^0.2.5"
}
}
}
Loading

0 comments on commit 60c9e05

Please sign in to comment.