Slim
Slim copied to clipboard
Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs.
As written [in documentaton](http://www.slimframework.com/docs/v4/middleware/error-handling.html) the `customErrorHandler` should receive the logger of the `ErrorMiddleware` as 6th parameter. But unfortunately the `customErrorHandler` always receives `null`. This can be reproduced by just copying...
Hi! The arguments get decoded twice, in: - \Slim\Routing\RoutingResults::getRouteArguments - \Slim\Routing\RouteResolver::computeRoutingResults That's a problem if the argument contains a "decodable" combination of characters. Let's say I have an article with...
Please release Smarty View support for Slim 4
I just need some tips on to fix this, i've read a bit of the documentation and downloaded some demos and there is some problem in the routes (i'm just...
I was in the process of migrating my web application to use the Slim `RequestResponseNamedArgs` controller invoker in favor of the previous PHP-DI/Invoker-based one I was using, and I had...
PHP 8.0+ allows you to use attributes for classes and methods. As a long-time slim user, I thought about implementing attributes in order to define routes. Instead of writing ```...
Since `AdvancedCallableResolver` was introduced midway through the release of Slim 4, we will need to unify the two interfaces in Slim 5 and break everything moving forward. We will also...
When I launch functional tests I don't need exception trace log output because Its huge. I want to see only an exception type, code, message, file and line. So I...
When logging errors in Slim\Handlers\ErrorHandler logError the logger object is declared to implement the LoggerInterface and the error function of this interface is used to actually log the error: ```...