bulletphp
bulletphp copied to clipboard
A resource-oriented micro PHP framework
Since the `php-5.6` and `php-7.0` versions are inactive for official PHP team. And I think it's time to drop these above PHP versions and let this framework require `php-7.1` version...
First time trying this project with recently released PHP8 got me this error: ``` Fatal error: Uncaught Error: Call to undefined function Bullet\get_magic_quotes_gpc() in /path/to/project/vendor/vlucas/bulletphp/src/Bullet/Request.php:73 Stack trace: #0 /path/to/project/public/index.php(11): Bullet\Request->__construct()...
When a Bullet app throws an exception, it triggers two handlers: the handler for `Exception`, and the handler for the exception subclass (i.e. `RuntimeException` or `MyAwesomeCustomException`). The handler for `Exception`...
Support should be added for retrieving the HTTP auth username and password in the request class, maybe with `$request->user()` and `$request->pass()` or similar. This is because there can be a...
There are times when one might like to have periods in the URI, but not a file extension. One such use case is for tokens, e.g. http://jwt.io/ Here's the offending...
I'm attempting to add authentication to my bullet-based web service. I'd like to be able to handle ALL requests and load a template for users that fail authentication, but this...