tempest-framework
tempest-framework copied to clipboard
The PHP framework that gets out of your way 🌊
Right now, a flash session is removed as soon as it's retrieved from the session. Ideally it should be removed when the response is sent, so that you have the...
With everything we have in place, it would be pretty trivial to add static site generation on top of existing controller methods. Let's say we have a normal controller like...
Models themselves are simple data objects, but the `IsModel` trait and `Model` interface add a bunch of database-specific methods. We need to carefully think on this API before a 1.0...
Now that https://github.com/tempestphp/tempest-framework/pull/175 is merged, we can explore some additional improvements to the router: - [ ] split dynamic and static routes within `RouteConfig` so that we don't have to...
I'm using an sqlite database and when I create two models and then save the first one again, it has the id of the second model. ```php
As per https://github.com/tempestphp/tempest-framework/issues/116#issuecomment-1970395938 * Added a test to make sure there are no abstract classes. * From bullet point 2 and 3 we can extract a test to make sure...
How about we support raw SQL files as migrations? The file name would decide the order and the migration name, just like Laravel.