Cornelius Kahns

Results 8 comments of Cornelius Kahns

Heres an easy way to get the remote project dir: ```PHP $serverRepository = $this->getConfig(Option::servers); $servers = $serverRepository->findAll(); foreach ($servers as $server) { $remoteProjectDir = $server->get(\EasyCorp\Bundle\EasyDeployBundle\Server\Property::project_dir); // $remoteProjectDir points to the...

Checkout [AVIF support #186](https://github.com/Gregwar/Image/pull/186)

@Gregwar Any chance of this being merged?

Any plans to update this project to use generics?

+1 I also need this for a map.

I can confirm that this does not seem to be related to Caddy. Here's a minimal example to reproduce the issue: ```golang package main import ( "github.com/corazawaf/coraza/v3" txhttp "github.com/corazawaf/coraza/v3/http" "net/http"...

It seems that the ResponseWriter is always wrapped, and the "response processor" outputs the buffered response? https://github.com/corazawaf/coraza/blob/main/http/interceptor.go#L140-L147 https://github.com/corazawaf/coraza/blob/main/http/middleware.go#L163-L171 https://github.com/corazawaf/coraza-caddy/blob/main/coraza.go#L133-L140 Is it really necessary to wrap the ResponseWriter, If `tx.IsResponseBodyAccessible() &&...