From f54668fe2b2ef84ca08ea6dbaecbcfa41cb1eea8 Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle Date: Fri, 1 Dec 2023 13:10:16 +0100 Subject: [PATCH] nix: use php 8.3 --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index baf21f2..fa670a9 100644 --- a/shell.nix +++ b/shell.nix @@ -2,8 +2,8 @@ pkgs.mkShell { # nativeBuildInputs is usually what you want -- tools you need to run nativeBuildInputs = [ - pkgs.php82 - pkgs.php82Packages.composer + pkgs.php83 + pkgs.php83Packages.composer ]; }