From e256610680f18a283161c41672206d6b9337f788 Mon Sep 17 00:00:00 2001 From: PJ Dietz Date: Wed, 21 Jan 2015 12:56:55 -0500 Subject: [PATCH] Update README. Add PHP 5.6 to Travis. --- .travis.yml | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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