diff --git a/.travis.yml b/.travis.yml index c08f41e..6f9d61b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: php php: + - "5.6" - "5.5" - "5.4" diff --git a/README.md b/README.md index a6addea..da474d2 100644 --- a/README.md +++ b/README.md @@ -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