From 72a8a1e3828b261767358b943b4bf4669c4a8c3e Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Tue, 21 Nov 2023 17:15:36 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Tweak=20which=20formulae=20to=20?= =?UTF-8?q?install=20for=20PHP=208.3=20and=20PHP=208.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Since PHP 8.0 is now EOL, it will be installed via the tap. - Since PHP 8.3 is now stable, it will be installed without the tap. --- phpmon/Domain/Integrations/Homebrew/Brew.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpmon/Domain/Integrations/Homebrew/Brew.swift b/phpmon/Domain/Integrations/Homebrew/Brew.swift index 1b04c9f..c96a3af 100644 --- a/phpmon/Domain/Integrations/Homebrew/Brew.swift +++ b/phpmon/Domain/Integrations/Homebrew/Brew.swift @@ -36,10 +36,10 @@ class Brew { /// Each formula for each PHP version that can be installed. public static let phpVersionFormulae = [ "8.4": "shivammathur/php/php@8.4", - "8.3": "shivammathur/php/php@8.3", // TODO: when php@8.3 lands in stable, update this + "8.3": "php@8.3", "8.2": "php@8.2", "8.1": "php@8.1", - "8.0": "php@8.0", + "8.0": "shivammathur/php/php@8.0", "7.4": "shivammathur/php/php@7.4", "7.3": "shivammathur/php/php@7.3", "7.2": "shivammathur/php/php@7.2",