From 3558afefe88fb810f0fbc8e0235909a6115b01a2 Mon Sep 17 00:00:00 2001 From: Yohann Monnier Date: Fri, 17 Sep 2021 10:50:27 +0200 Subject: [PATCH] Update of the default composer auth URL to updates.ibexa.co in the wizard --- src/Core/ProjectWizard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/ProjectWizard.php b/src/Core/ProjectWizard.php index 236c0ed..38546bb 100644 --- a/src/Core/ProjectWizard.php +++ b/src/Core/ProjectWizard.php @@ -115,7 +115,7 @@ protected function getOneComposerHttpBasic(): array $message = 'What is the host on which you want to add credentials?'; $errorMessage = "The host MUST respect {$pattern}."; - $default = 'updates.ez.no'; + $default = 'updates.ibexa.co'; $host = $this->io->askQuestion($this->getQuestion($message, $default, $validatorHost, $errorMessage)); $login = $this->io->askQuestion($this->getQuestion('Login?')); $password = $this->io->askQuestion($this->getQuestion('Password?'));