Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ laravel-11.0
laravel-12.11
leaf-4.4
lumen-10.0
maravel-10.51
maravel-10.52
nette-3.3
phroute-2.2
pure-php
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
|
*/

$app = require __DIR__.'/../bootstrap/app.php';
$app = require __DIR__ . '/../bootstrap/app.php';

/*
|--------------------------------------------------------------------------
Expand All @@ -24,8 +24,8 @@
| and wonderful application we have prepared for them.
|
*/

$app->run();
/** @var \App\Application $app */
$app->run(\App\Request::capture());


/* *** PHP-Frameworks-Bench *** */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

/** @var \Laravel\Lumen\Routing\Router $router */
/** @var \App\Router $router */

/*
|--------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# create project
rm -rf _benchmark/temp
composer create-project --prefer-dist macropay-solutions/maravel:10.51.* ./_benchmark/temp --ansi
composer create-project --prefer-dist macropay-solutions/maravel:10.52.* ./_benchmark/temp --ansi
mv ./_benchmark/temp/{.,}* ./

# have the route & controller
Expand Down
File renamed without changes.