tempest-framework
tempest-framework copied to clipboard
The PHP framework that gets out of your way 🌊
Following the discussion on #10 this PR will address the implementation for the Authentication Layer of the framework. This is still in an early stage, so I'll be updating the...
Some more reading: https://developer.mozilla.org/en-US/docs/Web/HTTP/Content_negotiation
`(new Redirect($to))->permanent()`
- `log:project` to tail the project log - `log:server` to tail the server log - `log:all` to tail both logs (aliased to `log`)
We need an abstraction to handle user logins. I don't want it to be tied directly to the database though, so we probably need to carefully think about how we...
It might be interesting to support markdown views that are wrapped in a dedicated `MarkdownView` class; the markdown will be rendered and be automatically be put into this view. ```...
Motivation: Timebox is useful in: - authentication, to prevent certain types of attacks (https://ephort.dk/blog/laravel-timing-attack-vulnerability/?ref=securinglaravel.com) - sub-minute scheduler, where we want every iteration of scheduler to run for exactly one second...