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