We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c669d8b commit 23aa73cCopy full SHA for 23aa73c
slim-4.11/_benchmark/hello_world.sh
@@ -1,2 +1,2 @@
1
#!/bin/sh
2
-url="$base/$fw/index.php/hello/index"
+url="$base/$fw/public/index.php/hello/index"
slim-4.11/index.php renamed to slim-4.11/public/index.php
@@ -1,13 +1,13 @@
<?php
use Slim\Factory\AppFactory;
3
4
-require __DIR__.'/vendor/autoload.php';
+require __DIR__.'/../vendor/autoload.php';
5
6
// Instantiate App
7
$app = AppFactory::create();
8
9
// xampp
10
-$app->setBasePath("/PHP-Frameworks-Bench/slim-4.11/index.php");
+$app->setBasePath("/PHP-Frameworks-Bench/slim-4.11/public/index.php");
11
12
// Add error middleware
13
$app->addErrorMiddleware(false, true, true);
0 commit comments