Skip to content

Instantly share code, notes, and snippets.

@awcodes
Created December 16, 2021 16:32
Show Gist options
  • Save awcodes/61782e5b0429ad8382b1c9bef7d2a12e to your computer and use it in GitHub Desktop.
Save awcodes/61782e5b0429ad8382b1c9bef7d2a12e to your computer and use it in GitHub Desktop.
Native PHP Valet Driver
<?php
class LocalValetDriver extends ValetDriver
{
private $site_folder = '/public';
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return bool
*/
public function serves($sitePath, $siteName, $uri)
{
if (
!file_exists($sitePath . '/artisan') &&
file_exists($sitePath . $this->site_folder . '/index.php')
) {
return true;
}
return false;
}
/**
* 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)
{
$filePath = $sitePath . $this->site_folder . $uri;
if (is_dir($filePath)) {
return false;
}
if (file_exists($filePath)) {
return $filePath;
}
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)
{
$path = $sitePath . $this->site_folder;
if ($uri == '/') {
return $path . '/index.php';
}
return strpos($uri, '.php') ? $path . $uri : $path . $uri . '/index.php';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment