Update README. Add PHP 5.6 to Travis.

This commit is contained in:
PJ Dietz 2015-01-21 12:56:55 -05:00
parent 84044d5057
commit e256610680
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
language: php
php:
- "5.6"
- "5.5"
- "5.4"

View File

@ -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