Magnus Eriksson
Magnus Eriksson
I just noticed that the configuration examples in the doc for MySQL are missing the `database`-parameter for creating a connection. :)
It would be really helpful to be able to add filters on specific routes, like most other routers, and not just globally on the "route"-method. Something like this: ``` php...
Is there a reason why the callbacks `onExtError()` and `onSizeError()` doesn't get the button reference passed to them? If it could be added, it would be awesome. Would really need...
Is this project abandoned? The only activity in over a year seem to be new issues, but they seem to go unheard. The last commit was over a year ago...
**Composers autoload** ```json "autoload": { "psr-4": { "Foo\\": "src/" } }, ``` **File:** `src/Test.php` **Generate namespace:** `Ctrl` + `Alt` + `G` **Result:** ```php namespace Foo\me\\www\site\src; ``` **Expected:** ```php namespace Foo;...
I have a problem with reverse routing. It omits the initial '/', which messes up the URL's when using `$router->route('name')` within a URL-subfolder. ``` $router->post(['/admin/login', 'login.do'], ['MyController','doLogin']); echo $router->route('login.do'); Expected:...