From 3adee3f5313e7abaf7ce3242d4e5f4167cde04d8 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 28 Jan 2024 21:51:02 +0000 Subject: [PATCH] Use PHP 8.2, fix CI tests --- build.yaml | 4 ++-- flake.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.yaml b/build.yaml index 45ba308..19195e4 100644 --- a/build.yaml +++ b/build.yaml @@ -5,5 +5,5 @@ language: php flake: devshell: packages: - - php81 - - php81Packages.composer + - php82 + - php82Packages.composer diff --git a/flake.nix b/flake.nix index a149852..2481116 100644 --- a/flake.nix +++ b/flake.nix @@ -15,8 +15,8 @@ perSystem = { config, self', inputs', pkgs, system, ... }: { devshells.default = { packages = with pkgs; [ - "php81" - "php81Packages.composer" + "php82" + "php82Packages.composer" ]; }; };