-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support PHP 8.3 #645
Support PHP 8.3 #645
Conversation
Signed-off-by: Luís Cobucci <lcobucci@gmail.com>
Lock file operations: 0 installs, 5 updates, 0 removals - Upgrading dealerdirect/phpcodesniffer-composer-installer (v0.7.2 => v1.0.0) - Upgrading doctrine/coding-standard (10.0.0 => 12.0.0) - Upgrading lcobucci/coding-standard (9.0.0 => 11.0.0) - Upgrading phpstan/phpdoc-parser (1.23.1 => 1.24.3) - Upgrading slevomat/coding-standard (8.13.1 => 8.14.1) Signed-off-by: Luís Cobucci <lcobucci@gmail.com>
Signed-off-by: Luís Cobucci <lcobucci@gmail.com>
Lock file operations: 0 installs, 22 updates, 1 removal - Removing sebastian/resource-operations (3.0.3) - Upgrading phpunit/php-code-coverage (9.2.29 => 10.1.8) - Upgrading phpunit/php-file-iterator (3.0.6 => 4.1.0) - Upgrading phpunit/php-invoker (3.1.1 => 4.0.0) - Upgrading phpunit/php-text-template (2.0.4 => 3.0.1) - Upgrading phpunit/php-timer (5.0.3 => 6.0.0) - Upgrading phpunit/phpunit (9.6.13 => 10.4.2) - Upgrading sebastian/cli-parser (1.0.1 => 2.0.0) - Upgrading sebastian/code-unit (1.0.8 => 2.0.0) - Upgrading sebastian/code-unit-reverse-lookup (2.0.3 => 3.0.0) - Upgrading sebastian/comparator (4.0.8 => 5.0.1) - Upgrading sebastian/complexity (2.0.2 => 3.1.0) - Upgrading sebastian/diff (4.0.5 => 5.0.3) - Upgrading sebastian/environment (5.1.5 => 6.0.1) - Upgrading sebastian/exporter (4.0.5 => 5.1.1) - Upgrading sebastian/global-state (5.0.6 => 6.0.1) - Upgrading sebastian/lines-of-code (1.0.3 => 2.0.1) - Upgrading sebastian/object-enumerator (4.0.4 => 5.0.0) - Upgrading sebastian/object-reflector (2.0.4 => 3.0.0) - Upgrading sebastian/recursion-context (4.0.5 => 5.0.0) - Upgrading sebastian/type (3.2.1 => 4.0.0) - Upgrading sebastian/version (3.0.2 => 4.0.1) - Upgrading theseer/tokenizer (1.2.1 => 1.2.2) Signed-off-by: Luís Cobucci <lcobucci@gmail.com>
Lock file operations: 0 installs, 4 updates, 0 removals - Upgrading symfony/console (v6.3.4 => v6.3.8) - Upgrading symfony/deprecation-contracts (v3.3.0 => v3.4.0) - Upgrading symfony/service-contracts (v3.3.0 => v3.4.0) - Upgrading symfony/string (v6.3.5 => v6.3.8) Signed-off-by: Luís Cobucci <lcobucci@gmail.com>
@@ -14,7 +14,7 @@ | |||
"ext-json": "*", | |||
"fig/http-message-util": "^1.1.5", | |||
"psr/http-factory": "^1.0.2", | |||
"psr/http-message": "^1.1.0", | |||
"psr/http-message": "^1.1 || ^2.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👋🏽 wondering if this is a WIP for the 3.3.x version, but it looks like Lcobucci\ContentNegotiation\UnformattedResponse
is not compatible with the contracts of Psr\Http\Message\ResponseInterface
psr/http-message:2.0.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right!
Our pipeline didn't detect that due to dependency constraints 😥
https://packagist.org/packages/middlewares/negotiation needs a release to be compatible with v4 of https://packagist.org/packages/middlewares/utils.
@oscarotero is that on your plans?
No description provided.