Skip to content

Instantly share code, notes, and snippets.

@brianjhanson
Created June 2, 2017 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save brianjhanson/bd4ffd78f975c44b7ae7f26775ea04eb to your computer and use it in GitHub Desktop.
Save brianjhanson/bd4ffd78f975c44b7ae7f26775ea04eb to your computer and use it in GitHub Desktop.
Valet Driver for Craft 3
<?php
class Craft3ValetDriver 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 . '/craft');
}
/**
* 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.'/web/'.$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.'/web/index.php';
}
}
@brianjhanson
Copy link
Author

Install this to ~/.valet/Drivers/Craft3ValetDriver.php

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