Update README. Add PHP 5.6 to Travis.
This commit is contained in:
parent
84044d5057
commit
e256610680
|
|
@ -1,5 +1,6 @@
|
|||
language: php
|
||||
php:
|
||||
- "5.6"
|
||||
- "5.5"
|
||||
- "5.4"
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ See [Routes](https://github.com/pjdietz/wellrested/wiki/Routes) to learn about t
|
|||
|
||||
#### Optimized Route Lookup
|
||||
|
||||
StaticRoute routes are optimized by providing a direct lookup from path to handler. This is different from convential lookups because a match must be found by iterating through the entire list of routes in the router. This reduces the lookup complexity from O(n) - linear - to O(1) - constant.
|
||||
StaticRoute and PrefixRoute routes are optimized by providing a direct lookup from path to handler. This is different from convential lookups because a match must be found by iterating through the entire list of routes in the router. This reduces the lookup complexity from O(n)—linear—to O(1)—constant.
|
||||
|
||||
|
||||
### Handlers
|
||||
|
|
|
|||
Loading…
Reference in New Issue