Slim-Website
Slim-Website copied to clipboard
Slim Framework website for GitHub Pages
I'm not exactly sure this would be the (only? best?) place to put it, but it would be nice to give a few examples of what the `slim\psr7` implementation of`ServerRequestInterface->getQueryParams()`...
Added HttpSoft to the PSR-7 Implementation as per 4.10.0 update.
Hello, In your example of a custom error handler you have this: ```php // Define Custom Error Handler $customErrorHandler = function ( ServerRequestInterface $request, Throwable $exception, bool $displayErrorDetails, bool $logErrors,...
The [middleware concepts](https://github.com/slimphp/Slim-Website/blob/gh-pages/docs/v4/concepts/middleware.md) page for Slim documentation is not exactly clear on the difference between before and after middleware. On [lines 5-9](https://github.com/slimphp/Slim-Website/blob/gh-pages/docs/v4/concepts/middleware.md?plain=1#L5-L9) it says that you can have middleware complete...
In order to add new language * Add new index (language_code) to `l10n.languages` in _config.yml file. * Update document index list in defaults in _config.yml file. * Translations are organized...
There is an easier way to configure apache instead use rewrite: ``` DirectoryIndex /index.php FallbackResource /index.php ``` DirectoryIndex can be normally omitted if the file is called index.php The advantage...
On the Slim landing page, we already mention the built-in PHP web server to run the skeleton application. Why not do the same on the ["Installation" docs page](https://www.slimframework.com/docs/v4/start/installation.html) (so the...
Hi Slim Framework Team :) Thanks for your hard work keeping this framework growing. I used to / sometimes visit Slim Framework's website to check what's new, or if there's...