Skip to content

Instantly share code, notes, and snippets.

@dustinleblanc
Created June 29, 2016 13:35
Show Gist options
  • Save dustinleblanc/f70e14bfcd533c1b13ec969714aa6806 to your computer and use it in GitHub Desktop.
Save dustinleblanc/f70e14bfcd533c1b13ec969714aa6806 to your computer and use it in GitHub Desktop.
Drupal Project Driver for Laravel Valet
<?php
class DrupalProjectValetDriver 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 . '/web/core/core.api.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)
{
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';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment