From 93276e0ae2d48ee7feb4c6da6a1082dfef86eca5 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 14 Jan 2020 15:17:35 +0100 Subject: [PATCH 1/4] Added myself to composer.json --- composer.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/composer.json b/composer.json index 4d05908..84a7743 100644 --- a/composer.json +++ b/composer.json @@ -7,6 +7,10 @@ { "name": "SteamPixel", "email": "info@steampixel.de" + }, + { + "name": "Maximilian Götz", + "email": "contact@maxbits.net" } ], "minimum-stability": "dev", From 921e85f2b868f41688907e643d601f32695c2697 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 14 Jan 2020 15:24:28 +0100 Subject: [PATCH 2/4] Added my homepage --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 84a7743..a670d6f 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,8 @@ }, { "name": "Maximilian Götz", - "email": "contact@maxbits.net" + "email": "contact@maxbits.net", + "homepage": "https://www.maxbits.net/" } ], "minimum-stability": "dev", From d8bb60d8dc9eec6fdc204521bba83c5984840a63 Mon Sep 17 00:00:00 2001 From: SteamPixel Date: Wed, 15 Jan 2020 09:12:58 +0100 Subject: [PATCH 3/4] Update README.md Thought the mention of "single class" is important :-) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99b6464..b548505 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Simple PHP Router -Hey! This is a simple and small PHP router that can handle the whole URL routing for your project. +Hey! This is a simple and small single class PHP router that can handle the whole URL routing for your project. It utilizes RegExp and PHP's anonymous functions to create a lightweight and fast routing system. The router supports dynamic path parameters, special 404 and 405 routes as well as verification of request methods like GET, POST, PUT, DELETE, etc. The codebase is very small and very easy to understand. So you can use it as a boilerplate for a more complex router. From 26e9ec784fb2480e3026e5190fb6b43aaa57ea5c Mon Sep 17 00:00:00 2001 From: SteamPixel Date: Wed, 15 Jan 2020 09:18:00 +0100 Subject: [PATCH 4/4] Update composer.json Updated author information --- composer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index a670d6f..3cbaa8d 100644 --- a/composer.json +++ b/composer.json @@ -5,8 +5,9 @@ "license": "MIT", "authors": [ { - "name": "SteamPixel", - "email": "info@steampixel.de" + "name": "Christoph Stitz", + "email": "info@steampixel.de", + "homepage": "https://steampixel.de/" }, { "name": "Maximilian Götz",