1
0
mirror of https://github.com/namibia/awesome-php.git synced 2024-06-06 00:10:48 +00:00

Moved routers into their own category.

This commit is contained in:
Jamie 2015-02-06 19:42:19 -07:00
parent 4ee7c0477b
commit c54c1becad

View File

@ -13,6 +13,7 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
- [Framework Components](#framework-components) - [Framework Components](#framework-components)
- [Micro Frameworks](#micro-frameworks) - [Micro Frameworks](#micro-frameworks)
- [Micro Framework Extras](#micro-framework-extras) - [Micro Framework Extras](#micro-framework-extras)
- [Routers](#routers)
- [Templating](#templating) - [Templating](#templating)
- [Static Site Generators](#static-site-generators) - [Static Site Generators](#static-site-generators)
- [HTTP](#http) - [HTTP](#http)
@ -126,8 +127,6 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
* [Silex](http://silex.sensiolabs.org/) - A micro framework built around Symfony2 components. * [Silex](http://silex.sensiolabs.org/) - A micro framework built around Symfony2 components.
* [Slim](http://www.slimframework.com/) - Another simple micro framework. * [Slim](http://www.slimframework.com/) - Another simple micro framework.
* [Bullet PHP](http://bulletphp.com/) - A micro framework for building REST APIs. * [Bullet PHP](http://bulletphp.com/) - A micro framework for building REST APIs.
* [Fast Route](https://github.com/nikic/FastRoute) - A fast routing library.
* [Pux](https://github.com/c9s/Pux) - Another fast routing library.
## Micro Framework Extras ## Micro Framework Extras
*Extras related to micro frameworks and routers.* *Extras related to micro frameworks and routers.*
@ -139,6 +138,13 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
* [Slim View](https://github.com/codeguy/Slim-Views) - A collection of custom views for Slim. * [Slim View](https://github.com/codeguy/Slim-Views) - A collection of custom views for Slim.
* [Slim Middleware](https://github.com/codeguy/Slim-Middleware) - A collection of custom middleware for Slim. * [Slim Middleware](https://github.com/codeguy/Slim-Middleware) - A collection of custom middleware for Slim.
## Routers
**Libraries for handling application routing.**
* [Fast Route](https://github.com/nikic/FastRoute) - A fast routing library.
* [Route](https://github.com/thephpleague/route) - A routing library built on top of Fast Route.
* [Pux](https://github.com/c9s/Pux) - Another fast routing library.
* [Klein](https://github.com/chriso/klein.php) - A flexible router.
## Templating ## Templating
*Libraries and tools for templating and lexing.* *Libraries and tools for templating and lexing.*