Skip to content

Commit

Permalink
chore: Update composer (PHP version and dependencies of NC30)
Browse files Browse the repository at this point in the history
* Nextcloud 30 uses PHP 8.1+
* Adjusted sabre/dav version used

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux committed Aug 13, 2024
1 parent 1385581 commit ecd9ae5
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 112 deletions.
40 changes: 20 additions & 20 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"name": "nextcloud/files_lock",
"require-dev": {
"phpunit/phpunit": "^9.5",
"nextcloud/coding-standard": "^1.0",
"psalm/phar": "^5.2",
"sabre/dav": "^4.3",
"nextcloud/ocp": "dev-master"
},
"name": "nextcloud/files_lock",
"require-dev": {
"phpunit/phpunit": "^9.5",
"nextcloud/coding-standard": "^1.2",
"psalm/phar": "^5.25",
"sabre/dav": "^4.6",
"nextcloud/ocp": "dev-master"
},
"config": {
"platform": {
"php": "8.0"
"php": "8.1"
}
},
"license": "AGPL",
"require": {
"php": "^8.0"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm.phar",
"test:unit": "phpunit -c tests/phpunit.xml"
},
"license": "AGPL",
"require": {
"php": "^8.1"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm.phar",
"test:unit": "phpunit -c tests/phpunit.xml"
},
"autoload-dev": {
"psr-4": {
"OCP\\": "vendor/nextcloud/ocp/OCP"
Expand Down
Loading

0 comments on commit ecd9ae5

Please sign in to comment.