From 45779913abd3019f9e12027abf05f21ac3518a5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sessing=C3=B8?= Date: Fri, 18 Sep 2015 21:54:24 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 84dc879..c5b1443 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Simple PHP router +# [WIP] Simple PHP router Simple, fast PHP router that is easy to get integrated and in almost any project. Heavily inspired by the Laravel router. ## Installation From 61857726dd8ac9899515522ecc78a527b84d895a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sessing=C3=B8?= Date: Sat, 19 Sep 2015 23:21:03 +0200 Subject: [PATCH 2/3] ... ... --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index c5b1443..047d555 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,6 @@ SimpleRouter::init($defaultControllerNamespace); ## Adding routes Remember the ```routes.php``` file you required in your ```index.php```? This file will contain all your custom rules for routing. - This router is heavily inspired by the Laravel 5.* router, so anything you find in the Laravel documentation should work here as well. ### Basic example From 4cc306a2ccad1e17bfd91fb19298878997475e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sessing=C3=B8?= Date: Sun, 20 Sep 2015 12:26:16 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 047d555..5c4496b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # [WIP] Simple PHP router Simple, fast PHP router that is easy to get integrated and in almost any project. Heavily inspired by the Laravel router. +**Please note: this project has just been added and is still a work in progress. Please use with caution until a stable release version is available :)** + ## Installation Add the latest version pf Simple PHP Router to your ```composer.json``` @@ -62,7 +64,7 @@ SimpleRouter::group(['prefix' => 'v1', 'middleware' => '\MyWebsite\Middleware\So ### Doing it the object oriented (hardcore) way -The ```Router``` class is just a simple helper class that knows how to communicate with the ```SimpleRouter``` class. If you are up for a challenge, want the full control or simply just want to create your own ```Router``` helper class, this example is for you. +The ```SimpleRouter``` class is just a simple helper class that knows how to communicate with the ```Router``` class. If you are up for a challenge, want the full control or simply just want to create your own ```SimpleRouter``` helper class, this example is for you. ```php use \Pecee\SimpleRouter;