From 8cf9bd2b91c955dd7f3db5c0763227583a368fe1 Mon Sep 17 00:00:00 2001 From: Anton Date: Tue, 14 May 2024 12:00:43 +0200 Subject: [PATCH] Adding support for Nette Framework. --- .../Drivers/Specific/NetteValetDriver.php | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 cli/Valet/Drivers/Specific/NetteValetDriver.php diff --git a/cli/Valet/Drivers/Specific/NetteValetDriver.php b/cli/Valet/Drivers/Specific/NetteValetDriver.php new file mode 100644 index 0000000..b245d5f --- /dev/null +++ b/cli/Valet/Drivers/Specific/NetteValetDriver.php @@ -0,0 +1,41 @@ +isActualFile($staticFilePath = $sitePath.'/www/'.$uri)) { + return $staticFilePath; + } + + return false; + } + + /** + * Get the fully resolved path to the application's front controller. + */ + public function frontControllerPath(string $sitePath, string $siteName, string $uri): ?string + { + $_SERVER['DOCUMENT_ROOT'] = $sitePath.'/www'; + $_SERVER['SCRIPT_FILENAME'] = $sitePath.'/www/index.php'; + $_SERVER['SCRIPT_NAME'] = '/index.php'; + $_SERVER['PHP_SELF'] = '/index.php'; + + return $sitePath.'/www/index.php'; + } +}