From 075f95a68416eb3437d61b9add3447afe4cfb6f7 Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Fri, 2 Jan 2026 23:22:30 +0200 Subject: [PATCH 01/22] Create clean.sh --- maravelith-10.52/_benchmark/clean.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 maravelith-10.52/_benchmark/clean.sh diff --git a/maravelith-10.52/_benchmark/clean.sh b/maravelith-10.52/_benchmark/clean.sh new file mode 100644 index 0000000..08f614c --- /dev/null +++ b/maravelith-10.52/_benchmark/clean.sh @@ -0,0 +1,4 @@ +#!/bin/sh +rm -rf !("_benchmark") +find -path './.*' -delete +rm -rf _benchmark/temp From 9dbea5897fcbd030fabc27e9f3ebb3e44bc15dfd Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Fri, 2 Jan 2026 23:24:43 +0200 Subject: [PATCH 02/22] Create clear-cache.sh --- maravelith-10.52/_benchmark/clear-cache.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 maravelith-10.52/_benchmark/clear-cache.sh diff --git a/maravelith-10.52/_benchmark/clear-cache.sh b/maravelith-10.52/_benchmark/clear-cache.sh new file mode 100644 index 0000000..a810016 --- /dev/null +++ b/maravelith-10.52/_benchmark/clear-cache.sh @@ -0,0 +1,4 @@ +#!/bin/sh +# clear cache +php artisan cache:clear +echo -e "done" From 7fa2365c8eaca8b7f39de827616734639e68c357 Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Fri, 2 Jan 2026 23:26:27 +0200 Subject: [PATCH 03/22] Create hello_world.sh --- maravelith-10.52/_benchmark/hello_world.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 maravelith-10.52/_benchmark/hello_world.sh diff --git a/maravelith-10.52/_benchmark/hello_world.sh b/maravelith-10.52/_benchmark/hello_world.sh new file mode 100644 index 0000000..4fe3beb --- /dev/null +++ b/maravelith-10.52/_benchmark/hello_world.sh @@ -0,0 +1,2 @@ +#!/bin/sh +url="$base/$fw/public/index.php/hello/index" From cbc9b22479c53bab10d86f132ce615f63b044d49 Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Fri, 2 Jan 2026 23:31:38 +0200 Subject: [PATCH 04/22] Create HelloWorldController.php --- .../app/Http/Controllers/HelloWorldController.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php diff --git a/maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php b/maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php new file mode 100644 index 0000000..4533c2b --- /dev/null +++ b/maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php @@ -0,0 +1,14 @@ + Date: Fri, 2 Jan 2026 23:36:51 +0200 Subject: [PATCH 05/22] Create index.php --- maravelith-10.52/_benchmark/public/index.php | 57 ++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 maravelith-10.52/_benchmark/public/index.php diff --git a/maravelith-10.52/_benchmark/public/index.php b/maravelith-10.52/_benchmark/public/index.php new file mode 100644 index 0000000..4b1a318 --- /dev/null +++ b/maravelith-10.52/_benchmark/public/index.php @@ -0,0 +1,57 @@ +make(Kernel::class); + +$response = $kernel->handle( + $request = \App\Request::capture() +)->send(); + +$kernel->terminate($request, $response); + +/* *** PHP-Frameworks-Bench *** */ +require $_SERVER['DOCUMENT_ROOT'].'/PHP-Frameworks-Bench/libs/output_data.php'; From 0c4fb51c132e5f353c51fabeff39f8d50136e524 Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Fri, 2 Jan 2026 23:39:15 +0200 Subject: [PATCH 06/22] Create web.php --- maravelith-10.52/_benchmark/routes/web.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 maravelith-10.52/_benchmark/routes/web.php diff --git a/maravelith-10.52/_benchmark/routes/web.php b/maravelith-10.52/_benchmark/routes/web.php new file mode 100644 index 0000000..55ea02b --- /dev/null +++ b/maravelith-10.52/_benchmark/routes/web.php @@ -0,0 +1,22 @@ + Date: Fri, 2 Jan 2026 23:43:15 +0200 Subject: [PATCH 07/22] Create setup.sh --- maravelith-10.52/_benchmark/setup.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 maravelith-10.52/_benchmark/setup.sh diff --git a/maravelith-10.52/_benchmark/setup.sh b/maravelith-10.52/_benchmark/setup.sh new file mode 100644 index 0000000..794fa2f --- /dev/null +++ b/maravelith-10.52/_benchmark/setup.sh @@ -0,0 +1,19 @@ +#!/bin/sh +# create project +rm -rf _benchmark/temp +composer create-project --prefer-dist macropay-solutions/maravelith:10.52.* ./_benchmark/temp --ansi +mv ./_benchmark/temp/{.,}* ./ + +# have the route & controller +yes|cp -rf _benchmark/maravelith/. ./ + +# some enhancements +composer install --no-dev -o --ansi + +cat >> .env << EOF +APP_ENV=production +APP_DEBUG=false +EOF + +chmod -R o+w storage +rm ./public/.htaccess From a860ff269e52195082e8f0193baa64cea435822b Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Fri, 2 Jan 2026 23:44:53 +0200 Subject: [PATCH 08/22] Create update.sh --- maravelith-10.52/_benchmark/update.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 maravelith-10.52/_benchmark/update.sh diff --git a/maravelith-10.52/_benchmark/update.sh b/maravelith-10.52/_benchmark/update.sh new file mode 100644 index 0000000..f6ed4c8 --- /dev/null +++ b/maravelith-10.52/_benchmark/update.sh @@ -0,0 +1,10 @@ +#!/bin/sh +composer update + +# have the route & controller +yes|cp -rf _benchmark/maravelith/. ./ + +# some enhancements +composer install --no-dev -o +chmod -R o+w storage +rm ./public/.htaccess From e618b1e706cc3fd46c44f873eff522172fb5e612 Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Fri, 2 Jan 2026 23:46:38 +0200 Subject: [PATCH 09/22] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4a11143..d61ce9c 100755 --- a/README.md +++ b/README.md @@ -239,6 +239,7 @@ Note: This project is based on * [Leaf](https://github.com/leafsphp/leaf) * [Lumen](https://github.com/laravel/lumen) * [Maravel](https://github.com/macropay-solutions/maravel) +* [Maravelith](https://github.com/macropay-solutions/maravelith) * [PhRoute](https://github.com/mrjgreen/phroute) * [Silex](https://github.com/silexphp/Silex) * [Slim](https://github.com/slimphp/Slim) From d04e4c2ac4aaf74071e33a2ff6bbc1058e20c75c Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Fri, 2 Jan 2026 23:48:19 +0200 Subject: [PATCH 10/22] Update config --- config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config b/config index d1fb285..6adfe38 100644 --- a/config +++ b/config @@ -27,6 +27,7 @@ laravel-12.11 leaf-4.4 lumen-10.0 maravel-10.51 +maravelith-10.52 phroute-2.2 pure-php slim-4.15 @@ -35,4 +36,4 @@ symfony-6.4 symfony-7.4 symfony-8.0 yii-2.0-basic -" \ No newline at end of file +" From 3baf335bd9d795968835b7a8847023a0a25aabe8 Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Fri, 2 Jan 2026 23:58:23 +0200 Subject: [PATCH 11/22] Delete maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php --- .../app/Http/Controllers/HelloWorldController.php | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php diff --git a/maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php b/maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php deleted file mode 100644 index 4533c2b..0000000 --- a/maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php +++ /dev/null @@ -1,14 +0,0 @@ - Date: Sat, 3 Jan 2026 00:01:16 +0200 Subject: [PATCH 12/22] Create HelloWorldController.php --- .../app/Http/Controllers/HelloWorldController.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 maravelith-10.52/_benchmark/app/Http/Controllers/HelloWorldController.php diff --git a/maravelith-10.52/_benchmark/app/Http/Controllers/HelloWorldController.php b/maravelith-10.52/_benchmark/app/Http/Controllers/HelloWorldController.php new file mode 100644 index 0000000..4533c2b --- /dev/null +++ b/maravelith-10.52/_benchmark/app/Http/Controllers/HelloWorldController.php @@ -0,0 +1,14 @@ + Date: Sat, 3 Jan 2026 00:10:23 +0200 Subject: [PATCH 13/22] Create HelloWorldController.php --- .../app/Http/Controllers/HelloWorldController.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php diff --git a/maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php b/maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php new file mode 100644 index 0000000..4533c2b --- /dev/null +++ b/maravelith-10.52/_benchmark/maravelith/app/Http/Controllers/HelloWorldController.php @@ -0,0 +1,14 @@ + Date: Sat, 3 Jan 2026 00:11:07 +0200 Subject: [PATCH 14/22] Delete maravelith-10.52/_benchmark/app/Http/Controllers/HelloWorldController.php --- .../app/Http/Controllers/HelloWorldController.php | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 maravelith-10.52/_benchmark/app/Http/Controllers/HelloWorldController.php diff --git a/maravelith-10.52/_benchmark/app/Http/Controllers/HelloWorldController.php b/maravelith-10.52/_benchmark/app/Http/Controllers/HelloWorldController.php deleted file mode 100644 index 4533c2b..0000000 --- a/maravelith-10.52/_benchmark/app/Http/Controllers/HelloWorldController.php +++ /dev/null @@ -1,14 +0,0 @@ - Date: Sat, 3 Jan 2026 00:13:25 +0200 Subject: [PATCH 15/22] Create index.php --- .../_benchmark/maravelith/public/index.php | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 maravelith-10.52/_benchmark/maravelith/public/index.php diff --git a/maravelith-10.52/_benchmark/maravelith/public/index.php b/maravelith-10.52/_benchmark/maravelith/public/index.php new file mode 100644 index 0000000..4b1a318 --- /dev/null +++ b/maravelith-10.52/_benchmark/maravelith/public/index.php @@ -0,0 +1,57 @@ +make(Kernel::class); + +$response = $kernel->handle( + $request = \App\Request::capture() +)->send(); + +$kernel->terminate($request, $response); + +/* *** PHP-Frameworks-Bench *** */ +require $_SERVER['DOCUMENT_ROOT'].'/PHP-Frameworks-Bench/libs/output_data.php'; From 4b5c7fb3191e4071949bfb2566c5a4c28d0971b0 Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Sat, 3 Jan 2026 00:14:16 +0200 Subject: [PATCH 16/22] Create web.php --- .../_benchmark/maravelith/routes/web.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 maravelith-10.52/_benchmark/maravelith/routes/web.php diff --git a/maravelith-10.52/_benchmark/maravelith/routes/web.php b/maravelith-10.52/_benchmark/maravelith/routes/web.php new file mode 100644 index 0000000..55ea02b --- /dev/null +++ b/maravelith-10.52/_benchmark/maravelith/routes/web.php @@ -0,0 +1,22 @@ + Date: Sat, 3 Jan 2026 00:14:44 +0200 Subject: [PATCH 17/22] Delete maravelith-10.52/_benchmark/routes/web.php --- maravelith-10.52/_benchmark/routes/web.php | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 maravelith-10.52/_benchmark/routes/web.php diff --git a/maravelith-10.52/_benchmark/routes/web.php b/maravelith-10.52/_benchmark/routes/web.php deleted file mode 100644 index 55ea02b..0000000 --- a/maravelith-10.52/_benchmark/routes/web.php +++ /dev/null @@ -1,22 +0,0 @@ - Date: Sat, 3 Jan 2026 00:14:59 +0200 Subject: [PATCH 18/22] Delete maravelith-10.52/_benchmark/public/index.php --- maravelith-10.52/_benchmark/public/index.php | 57 -------------------- 1 file changed, 57 deletions(-) delete mode 100644 maravelith-10.52/_benchmark/public/index.php diff --git a/maravelith-10.52/_benchmark/public/index.php b/maravelith-10.52/_benchmark/public/index.php deleted file mode 100644 index 4b1a318..0000000 --- a/maravelith-10.52/_benchmark/public/index.php +++ /dev/null @@ -1,57 +0,0 @@ -make(Kernel::class); - -$response = $kernel->handle( - $request = \App\Request::capture() -)->send(); - -$kernel->terminate($request, $response); - -/* *** PHP-Frameworks-Bench *** */ -require $_SERVER['DOCUMENT_ROOT'].'/PHP-Frameworks-Bench/libs/output_data.php'; From a6b24ff5133af9c39843ae9317af9a475f8475b0 Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Wed, 7 Jan 2026 12:56:54 +0200 Subject: [PATCH 19/22] Update index.php --- maravelith-10.52/_benchmark/maravelith/public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maravelith-10.52/_benchmark/maravelith/public/index.php b/maravelith-10.52/_benchmark/maravelith/public/index.php index 4b1a318..f44c34e 100644 --- a/maravelith-10.52/_benchmark/maravelith/public/index.php +++ b/maravelith-10.52/_benchmark/maravelith/public/index.php @@ -54,4 +54,4 @@ $kernel->terminate($request, $response); /* *** PHP-Frameworks-Bench *** */ -require $_SERVER['DOCUMENT_ROOT'].'/PHP-Frameworks-Bench/libs/output_data.php'; +require $_SERVER['DOCUMENT_ROOT'] . '/PHP-Frameworks-Bench/libs/output_data.php'; From 93b10aa21cae23a74b55f8de9d945f17a2e6e199 Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Wed, 7 Jan 2026 13:27:41 +0200 Subject: [PATCH 20/22] Update config --- config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config b/config index 95a0b1f..e0ce2e0 100644 --- a/config +++ b/config @@ -27,8 +27,8 @@ laravel-12.11 leaf-4.4 lumen-10.0 maravel-10.51 -nette-3.3 maravelith-10.52 +nette-3.3 phroute-2.2 pure-php slim-4.15 From 435eb6691017b73829cc110a2de1ece24e4ea20f Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Wed, 7 Jan 2026 13:29:55 +0200 Subject: [PATCH 21/22] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95c3a75..da45bfc 100755 --- a/README.md +++ b/README.md @@ -239,8 +239,8 @@ Note: This project is based on * [Leaf](https://github.com/leafsphp/leaf) * [Lumen](https://github.com/laravel/lumen) * [Maravel](https://github.com/macropay-solutions/maravel) +* Maravelith](https://github.com/macropay-solutions/maravelith) * [Nette](https://github.com/nette/web-project) -* [Maravelith](https://github.com/macropay-solutions/maravelith) * [PhRoute](https://github.com/mrjgreen/phroute) * [Silex](https://github.com/silexphp/Silex) * [Slim](https://github.com/slimphp/Slim) From a44a99b44f6c2d68229fbbb38d3c00615338e88c Mon Sep 17 00:00:00 2001 From: marius-ciclistu Date: Wed, 7 Jan 2026 13:31:27 +0200 Subject: [PATCH 22/22] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index da45bfc..cbe61c8 100755 --- a/README.md +++ b/README.md @@ -239,7 +239,7 @@ Note: This project is based on * [Leaf](https://github.com/leafsphp/leaf) * [Lumen](https://github.com/laravel/lumen) * [Maravel](https://github.com/macropay-solutions/maravel) -* Maravelith](https://github.com/macropay-solutions/maravelith) +* [Maravelith](https://github.com/macropay-solutions/maravelith) * [Nette](https://github.com/nette/web-project) * [PhRoute](https://github.com/mrjgreen/phroute) * [Silex](https://github.com/silexphp/Silex)