|
| 1 | +--- |
| 2 | +sidebar_position: 3 |
| 3 | +sidebar_label: Laravel Herd |
| 4 | +--- |
| 5 | + |
| 6 | +# Using Laravel Herd |
| 7 | + |
| 8 | +If your development environment uses Herd, most Nebula websites should work fine without any special configuration because Herd will apply its built-in Bedrock driver. |
| 9 | + |
| 10 | +However if you're working on a multisite or want a couple of other additional niceties you can add our Nebula driver to your local Herd installation. |
| 11 | + |
| 12 | +## Driver Installation |
| 13 | + |
| 14 | +Save the following as `~/Library/Application Support/Herd/config/valet/Drivers/NebulaValetDriver.php` and restart Herd. You can verify its working by looking at the site's information in Herd; you wll see a reference to Nebula and the website's WordPress version. |
| 15 | + |
| 16 | + |
| 17 | +```php |
| 18 | +<?php |
| 19 | + |
| 20 | +namespace Valet\Drivers\Custom; |
| 21 | + |
| 22 | +use Symfony\Component\Process\ExecutableFinder; |
| 23 | +use Symfony\Component\Process\Process; |
| 24 | +use Valet\Drivers\Specific\BedrockValetDriver; |
| 25 | + |
| 26 | +class NebulaValetDriver extends BedrockValetDriver |
| 27 | +{ |
| 28 | + public function serves(string $sitePath, string $siteName, string $uri): bool |
| 29 | + { |
| 30 | + // Quickest answer |
| 31 | + if (file_exists($sitePath.'/web/app/mu-plugins/nebula-autoloader.php')) { |
| 32 | + return true; |
| 33 | + } |
| 34 | + |
| 35 | + // Must be a Composer project |
| 36 | + if (! file_exists($sitePath.'/composer.json')) { |
| 37 | + return false; |
| 38 | + } |
| 39 | + |
| 40 | + // Simple string match for a mention of nebula or nebula-tools (decoding JSON is unnecessarily expensive) |
| 41 | + $composer = file_get_contents($sitePath.'/composer.json'); |
| 42 | + |
| 43 | + return str_contains($composer, 'eighteen73/nebula'); |
| 44 | + } |
| 45 | + |
| 46 | + public function isStaticFile(string $sitePath, string $siteName, string $uri)/* : string|false */ |
| 47 | + { |
| 48 | + $uri = $this->rewriteMultisite($sitePath, $uri); |
| 49 | + |
| 50 | + return parent::isStaticFile($sitePath, $siteName, $uri); |
| 51 | + } |
| 52 | + |
| 53 | + public function frontControllerPath(string $sitePath, string $siteName, string $uri): ?string |
| 54 | + { |
| 55 | + $uri = $this->rewriteMultisite($sitePath, $uri); |
| 56 | + |
| 57 | + return parent::frontControllerPath($sitePath, $siteName, $uri); |
| 58 | + } |
| 59 | + |
| 60 | + public function siteInformation(string $sitePath, string $phpBinary): array |
| 61 | + { |
| 62 | + $wpCli = $this->wpCliPath($sitePath); |
| 63 | + |
| 64 | + $process = new Process([ |
| 65 | + $phpBinary, |
| 66 | + $wpCli, |
| 67 | + 'core', |
| 68 | + 'version', |
| 69 | + '--path='.$sitePath.'/web/wp', |
| 70 | + ]); |
| 71 | + $process->run(); |
| 72 | + if ($process->isSuccessful()) { |
| 73 | + $version = trim($process->getOutput()); |
| 74 | + } |
| 75 | + |
| 76 | + return [ |
| 77 | + 'Overview' => [ |
| 78 | + 'Framework' => 'WordPress (using Nebula)', |
| 79 | + 'Version' => $version ?? 'Unknown', |
| 80 | + 'Multisite' => $this->isMultisite($sitePath) ? 'Yes' : 'No', |
| 81 | + ], |
| 82 | + ]; |
| 83 | + } |
| 84 | + |
| 85 | + protected function rewriteMultisite(string $sitePath, string $uri): string |
| 86 | + { |
| 87 | + if (! $this->isMultisite($sitePath)) { |
| 88 | + return $uri; |
| 89 | + } |
| 90 | + |
| 91 | + if (preg_match('#^(/[^/]+)?(?!/wp-json)(/wp-.*)#', $uri, $matches) || preg_match('#^(/[^/]+)?(/.*\.php)#', $uri, $matches)) { |
| 92 | + return '/wp'.$matches[2]; |
| 93 | + } |
| 94 | + |
| 95 | + return $uri; |
| 96 | + } |
| 97 | + |
| 98 | + protected function isMultisite(string $sitePath): string |
| 99 | + { |
| 100 | + $application = file_get_contents($sitePath.'/config/application.php'); |
| 101 | + |
| 102 | + return (bool) preg_match('/define\(\s*(["\'])MULTISITE\1\s*,\s*true\s*\)/mi', $application); |
| 103 | + } |
| 104 | + |
| 105 | + protected function wpCliPath(string $sitePath): ?string |
| 106 | + { |
| 107 | + $executableFinder = new ExecutableFinder; |
| 108 | + $wp_path = $executableFinder->find('wp'); |
| 109 | + if (! $wp_path) { |
| 110 | + foreach (["{$sitePath}/vendor/bin/wp", '/usr/local/bin/wp'] as $path) { |
| 111 | + if (file_exists($path)) { |
| 112 | + $wp_path = $path; |
| 113 | + break; |
| 114 | + } |
| 115 | + } |
| 116 | + } |
| 117 | + |
| 118 | + return $wp_path ?? null; |
| 119 | + } |
| 120 | +} |
| 121 | +``` |
0 commit comments