Skip to content

Instantly share code, notes, and snippets.

@syntaxlexx
Created October 28, 2022 10:40
Show Gist options
  • Save syntaxlexx/53d1bf7898f41574418562fea6fd5e44 to your computer and use it in GitHub Desktop.
Save syntaxlexx/53d1bf7898f41574418562fea6fd5e44 to your computer and use it in GitHub Desktop.
Serve vanilla PHP projects with Laravel Valet. Extends the ValetDriver. Put in in the root folder of the project.
<?php
class LocalValetDriver extends ValetDriver
{
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return void
*/
public function serves($sitePath, $siteName, $uri)
{
if (file_exists($sitePath.'/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)
{
if (file_exists($staticFilePath = $sitePath.'/public/'.$uri)) {
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)
{
if ($uri == '/')
return $sitePath.'/index.php';
return strpos($uri, '.php') ? $sitePath.$uri : $sitePath.$uri.'.php';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment