diff --git a/bin/composer-scripts/ProjectEvents/PostInstallScript.php b/bin/composer-scripts/ProjectEvents/PostInstallScript.php index 233f6109..3143c169 100644 --- a/bin/composer-scripts/ProjectEvents/PostInstallScript.php +++ b/bin/composer-scripts/ProjectEvents/PostInstallScript.php @@ -87,6 +87,15 @@ public static function init( Event $event, bool $fromExecute = false ): void { // Give database population options self::populateDatabase(); } else { + // Pre-populate Site Info + self::$info = [ + 'title' => 'WordPress Site Starter', + 'description' => 'A project developed by Viget.', + 'url' => 'https://wpstarter.ddev.site', + 'username' => 'viget', + 'email' => 'fed+wp@viget.com', + ]; + // Automatically install WordPress self::doFreshInstall(); }