From 0b58b223194cef3bb49c9c1f3e0c0133545d1628 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 10 Dec 2024 12:38:13 +0000 Subject: [PATCH] Adds PHP 8.4 support (#10) * Adds PHP 8.4 support * Update tests.yml --------- Co-authored-by: Claudio Dekker --- .github/workflows/tests.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 60a8e39..4a67df9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.1, 8.2, 8.3 ] + php: [ 8.1, 8.2, 8.3, 8.4 ] laravel: [ 8, 9, 10, 11 ] stability: [ 'prefer-lowest', 'prefer-stable' ] include: diff --git a/composer.json b/composer.json index d0ec72a..e6f4169 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,7 @@ "source": "https://github.com/lmsqueezy/plain-ui-components" }, "require": { - "php": "~8.1.0|~8.2.0|~8.3.0", + "php": "~8.1.0|~8.2.0|~8.3.0|~8.4.0", "illuminate/http": "^8.83|^9.33|^10.0|^11.0", "illuminate/support": "^8.83|^9.33|^10.0|^11.0" },