Skip to content

Instantly share code, notes, and snippets.

@craigpotter
Created April 8, 2022 08:49
Show Gist options
  • Save craigpotter/0c8d2e19fc8fb42c4c48fe88a08b4523 to your computer and use it in GitHub Desktop.
Save craigpotter/0c8d2e19fc8fb42c4c48fe88a08b4523 to your computer and use it in GitHub Desktop.
Laravel Valet Yii1.1 Driver
<?php
class YiiValetDriver 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)
{
if (file_exists($sitePath.'/protected/yiic.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_html/'.$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)
{
return $sitePath.'/public_html/index.php';
}
}
@craigpotter
Copy link
Author

To use this, copy this file to ~/.config/valet/Drivers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment