From 7debcb349923a19442986c0487e7068434947b5c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 13 Feb 2025 08:40:10 +0100 Subject: update to 7.0.4 raise dependency on PHP 7.4 rename to php-sabre-http7 install in /usr/share/php/Sabre/HTTP7 raise dependency on sabre/event 6 raise dependency on sabre/uri 2.3 or 3.0 --- composer.json | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 48caa44..98edcd7 100644 --- a/composer.json +++ b/composer.json @@ -5,17 +5,20 @@ "homepage" : "https://github.com/fruux/sabre-http", "license" : "BSD-3-Clause", "require" : { - "php" : "^7.1 || ^8.0", + "php" : "^7.4 || ^8.0", "ext-mbstring" : "*", "ext-ctype" : "*", "ext-curl" : "*", - "sabre/event" : ">=4.0 <6.0", - "sabre/uri" : "^2.0" + "sabre/event" : "^6.0", + "sabre/uri" : "^2.3 || ^3.0" }, "require-dev" : { - "friendsofphp/php-cs-fixer": "~2.17.1||^3.63", - "phpstan/phpstan": "^0.12", - "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.6" + "friendsofphp/php-cs-fixer": "^3.64", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-phpunit": "^1.4", + "phpstan/phpstan-strict-rules": "^1.6", + "phpstan/extension-installer": "^1.3", + "phpunit/phpunit" : "^9.6" }, "suggest" : { "ext-curl" : " to make http requests with the Client class" @@ -60,5 +63,10 @@ "composer cs-fixer", "composer phpunit" ] + }, + "config": { + "allow-plugins": { + "phpstan/extension-installer": true + } } } -- cgit