From 489c4e2fd0ec8e27d1fde27cd2eef2d013ed4cb5 Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Fri, 14 Aug 2026 00:55:33 -0400 Subject: [PATCH 1/2] replace README.md frameworks comparison table with mermaid bars chart --- README.md | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 9a043f78..12b398ee 100644 --- a/README.md +++ b/README.md @@ -40,17 +40,20 @@ Yes! Flight is fast. It is one of the fastest PHP frameworks available. You can See the benchmark below with some other popular PHP frameworks. This is measured in requests processed within the same timeframe. -| Framework | Plaintext Requests| JSON Requests| -| --------- | ------------ | ------------ | -| Flight | 190,421 | 182,491 | -| Yii | 145,749 | 131,434 | -| Fat-Free | 139,238 | 133,952 | -| Slim | 89,588 | 87,348 | -| Phalcon | 95,911 | 87,675 | -| Symfony | 65,053 | 63,237 | -| Lumen | 40,572 | 39,700 | -| Laravel | 26,657 | 26,901 | -| CodeIgniter | 20,628 | 19,901 | +```mermaid +--- +config: + xyChart: + xAxis: + yAxis: + showDataLabel: true +--- +xychart + title "Rendimiento de Frameworks PHP (miles de solicitudes/seg)" + x-axis "Framework" ["Flight", "Yii", "Fat-Free", "Slim", "Phalcon", "Symfony", "Lumen", "Laravel", "CodeIgniter"] + y-axis "Solicitudes (x1000)" 0 --> 200 + bar [190.4, 145.7, 139.2, 89.6, 95.9, 65.1, 40.6, 26.7, 20.6] +``` ## Skeleton App From 31cd1b043782d34c42c83c3e7a6a6e5362099117 Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Fri, 14 Aug 2026 01:05:13 -0400 Subject: [PATCH 2/2] translate chart to english Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 12b398ee..8e8c742f 100644 --- a/README.md +++ b/README.md @@ -44,15 +44,15 @@ See the benchmark below with some other popular PHP frameworks. This is measured --- config: xyChart: - xAxis: - yAxis: showDataLabel: true --- -xychart - title "Rendimiento de Frameworks PHP (miles de solicitudes/seg)" +xychart-beta + title "PHP Framework Performance (TechEmpower, requests/sec)" x-axis "Framework" ["Flight", "Yii", "Fat-Free", "Slim", "Phalcon", "Symfony", "Lumen", "Laravel", "CodeIgniter"] - y-axis "Solicitudes (x1000)" 0 --> 200 + y-axis "Requests/sec (x1000)" 0 --> 200 + %% Series 1: Plaintext, Series 2: JSON bar [190.4, 145.7, 139.2, 89.6, 95.9, 65.1, 40.6, 26.7, 20.6] + bar [182.5, 131.4, 134.0, 87.3, 87.7, 63.2, 39.7, 26.9, 19.9] ``` ## Skeleton App