Skip to content

Instantly share code, notes, and snippets.

@shukriYusof
Last active December 4, 2023 04:45
Show Gist options
  • Save shukriYusof/04703ed7eb7b296719a507a57f2843f2 to your computer and use it in GitHub Desktop.
Save shukriYusof/04703ed7eb7b296719a507a57f2843f2 to your computer and use it in GitHub Desktop.
Codeigniter Valet Driver
<?php
class CodeIgniterValetDriver extends ValetDriver
{
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return bool
*/
public function serves($sitePath, $siteName, $uri)
{
return file_exists($sitePath . '/system/core/CodeIgniter.php');
}
/**
* Determine if the incoming request is for a static file.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string|false
*/
public function isStaticFile($sitePath, $siteName, $uri)
{
$staticFilePath = $sitePath . $uri;
if (file_exists($staticFilePath)) {
return $staticFilePath;
}
return false;
}
/**
* Get the fully resolved path to the application's front controller.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string
*/
public function frontControllerPath($sitePath, $siteName, $uri)
{
// Handle trailing slashes
$uri = rtrim($uri, '/');
return $sitePath . '/index.php';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment