-
Hi,
during the migration from slim2 to 3, I've found that it would help a lot having
```
public function __get($name)
{
return $this->container->get($name);
}
```
within \Slim\A…
-
Hi,
maybe i m missing something, I was expecting to install slim3, i got slim 2 after i run the composer generator.
-
Here I have setup my [`routes.php`](https://github.com/projek-xyz/slim-skeleton/blob/develop/app/routers.php)
``` php
$app->get('/[{name}]', 'App\Actions\HomeAction:index')->setName('home-page');
```…
-
I am using `siteUrl` in Smarty templates on an HTTPS website and it generates HTTP URLs. It should generate HTTPS URLs.
-
Hi,
Did you guys like the idea of using relative path in `Slim\Handlers\Error` exception trace? May be something like this.
![slim application error](https://cloud.githubusercontent.com/assets/50866…
-
Hi,
has anyone done any thinking on integrating php-di with the Slim web framework/thingie?
This is basically a Slim web app:
index.php:
``` php
$app = new \Slim\Slim();
$app->get('/orders(/:page…
-
I would like to create a custom error handler specifically to handle a 403 response. I'd like to be able to throw a "Forbidden" exception and have a response with a 403 code returned.
I see where the…
-
Hi everyone,
I'm a beginner on Slim Framework, which is really great so far :-)
Did someone else loosing capability to use Slim\App or Di\Container in Models/Action(s) ?
Why Strategies don't inject …
-
-
The response is just cut off, simple script
```