router icon indicating copy to clipboard operation
router copied to clipboard

A lightweight and simple object oriented PHP Router

Results 56 router issues
Sort by recently updated
recently updated
newest added

Hi **First:** Is it possible to add After Router Middleware earlier before actually calling $router->run() If not please provide a method for doing so. I will suggest something like this...

enhancement
good first issue

Hey, let's say I have the following route : ```php $router->get('/', 'HomepageController@index'); ``` I would like to use the before route middleware to restrict non-logged in users from accessing the...

My domains are structured like this to server different language versions of the same page: `example.com/nl/page-1` and `example.com/en/page-1` for the same url in different languages. My code looks like this:...

enhancement

Are there any benchmarks available?

enhancement

Hi, I want to return a 404 error page for all request starting with WEB_INF like http: //domain.com/**WEB-INF** Is it normal behavior that url is redirected to http: //domain.com/**WEB-INF?uri=WEB-INF**. Please...

Publish a new version and solve the problems with page 404 my frameworke flare [https://github.com/flare-framework/Flare/tree/master/Flare](url)

Notice: this issue is applicable for any HTTP method. Lets use PUT for example. The Router throws '**Undefined index: PUT**' PHP notice when there is attempt to call PUT method,...

An extra document has been included, showcasing a practical demonstration of routers and controllers through the utilization of bramus/router.

Hi, This seems not a big issue, but I thought I'd report it anyway. When you make a GET request to a page that does not exist, which should prompt...

Using this in my project for the first time, I found that a small fix I wanted to apply was already merged on master -- but no release tag has...