FastRoute icon indicating copy to clipboard operation
FastRoute copied to clipboard

Fast request router for PHP

Results 44 FastRoute issues
Sort by recently updated
recently updated
newest added

I'm not an expert on git-etiquette , but i hope this is the right place for a remark/suggestion or 2. Basically i made a reverse router myself, just using some...

Currently the router uses a three tier fallback system: 1. First match against provided method. 2. If method is HEAD, match against GET routes. 3. Match against `*` method routes....

Hi, is there any chance to have tagged a new 1.4 version? I've spend half day debugging an issue with phpunit and its code coverage module, to discover that it...

Partially covers https://github.com/nikic/FastRoute/issues/225 and hypothetically could be covered fully is parser will return both raw and encoded route string. I'm not sure about the full covering way, but hope at...

hello my local project work but when i am uploading code to server nothing work . i.e : this way localhost:9000/hello works but this one http://api.domaine.com/hello does not working -...

question

Hi, in this PR I've added a `scripts` section to the `composer.json` for convenience and also a link to the [list of contributors](https://github.com/nikic/FastRoute/graphs/contributors) as authors. Bonus: bumped PHPUnit to v10.5...

Ok, I'm trying [this again](https://github.com/nikic/FastRoute/pull/181) :) Now that we have the `static` return type, we can write pretty fluent interfaces without worrying about messy return types, yay! And while this...

Hey, this PR updates the workflow runs to use the latest versions of `actions/checkout` and `ramsey/composer-install` to stop the node.js deprecation warnings. Further I have moved the PHPUnit cache directory...

Hi @lcobucci in the current v2 beta you make dispatcher() and uriGenerator() available from the FastRoute() instance created by the factory method FastRoute::recommendedSettings() - but neither allows you to get...

enhancement