From 0027b0c47896434b48674ba1960b38ea2ca6c195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Cobucci?= Date: Wed, 26 Feb 2020 23:06:32 +0100 Subject: [PATCH] Remove reference to deprecated package --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1bf57e5..e5cd02e 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ use Lcobucci\ContentNegotiation\ContentTypeMiddleware; use Lcobucci\ErrorHandling\ErrorConversionMiddleware; use Lcobucci\ErrorHandling\ErrorLoggingMiddleware; -// In a Zend Expressive application, it would look like this: +// In a Laminas Mezzio application, it would look like this: $application->pipe(ContentTypeMiddleware::fromRecommendedSettings( /* ... */ )); // Very first middleware $application->pipe(new ErrorConversionMiddleware( /* ... */ )); $application->pipe(new ErrorLoggingMiddleware( /* ... */ ));