Daniel Opitz

Results 100 comments of Daniel Opitz

@fulldecent As long it's a Slim http specific exception, you can use the `$exception->getRequest()` method. ```php $uri = $exception->getRequest()->getUri(); ``` ```php use Slim\Exception\HttpException; // ... if ($exception instanceof HttpException) {...

Hi @matejik It seems like there's a compatibility issue between the versions of `slim/twig-view` and the latest `psr/http-message` package. The `slim/twig-view` declares v1.1 as dependency, which should be changed to...

I can confirm this behavior. Minimal app: ```php

Hi @piotr-cz I understand that this can be frustrating, that's why we already have tried different approaches to fix this in the last years. For instance by caching the stream....

I have the same issue with this session package in combination with a DI container. Creating a session or a `Laminas\Session\Container` object should not start the session handler. This is...

Have you tried this example? https://github.com/selective-php/xmldsig?tab=readme-ov-file#signing-only-specific-part-of-an-xml-document

I will check this file as soon as possible.

I have checked this file. The "rule" is that the sum of all files must be the same as the file header uncompressed size at offset 22. See here: https://en.wikipedia.org/wiki/ZIP_(file_format)#File_headers...