-
above error pops-up after latest changes - this is interface only: Interop/Container/Exception/NotFoundException.php
-
Hey there I've written some piece of code which I believe can be used as a session management service for the upcoming version 3. Awaiting your feedback on this.
You can find it at https://github.com…
-
This issue is caused by PR #1443
Unfortunately, this PR doesn't have backward compatibility. Before I was able to "override" container values before `$app->run()`.
Before I was able to do the follo…
-
New users often seem confused regarding how slim populates params()/get()/post(). Content-Type application/json isn't supported by default, and users have been posting to a route with json data and no…
-
Hi
I'm using Slimframework with Twig view and DebugBar
$debugbar = new StandardDebugBar();
// Twig collector
$twig = $app->view->getEnvironment(); // $app is an instance of the class Slim\Slim
$env…
-
The `Http\Request` class needs to support the PSR-7 interface methods for dealing with the `$_FILES` request data. The `\Slim\Http\Request::getFileParams()` method should return the current `$_FILES` …
-
sample code:
``` php
$app = new Slim\App();
$app->add(function ($req, $res, $next) {
$res->write('BEFORE');
return $next($req, $res);
});
$app->get('/', function ($request, $response, $args…
-
https://github.com/slimphp/Slim/blob/2c434e4186aae6b1f7b490e03eabc1c086e8d553/Slim/Http/Util.php#L92-L126
https://github.com/slimphp/Slim/blob/2c434e4186aae6b1f7b490e03eabc1c086e8d553/Slim/Http/Util.p…
-
Hey,
Nice to see your cache middleware. I was looking at the code, and find it also suits Conduit and may be others which are PSR-7 framework.
Some questions / concerns :
1 . I think the CachePro…
-
Remove encryption from core and remove Zend/Crypt as a hard requirement. We can move encryption into an optional middleware that can act on cookies, session, or both. As requested by @akrabat at https…