From b85151c8f80f4b561d7048bc9500915dc5794941 Mon Sep 17 00:00:00 2001 From: edalzell Date: Sat, 12 Apr 2025 17:38:37 -0700 Subject: [PATCH 1/2] remove laravel constraint so L12 is supported --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index d0b4cde..5ab99f8 100644 --- a/composer.json +++ b/composer.json @@ -37,8 +37,7 @@ "require": { "php": "^8.2", "edalzell/forma": "^2.0 || ^3.0", - "laravel/framework": "^9.6 || ^10.11 || ^11.0", - "nesbot/carbon": "^2.0", + "nesbot/carbon": "^2.0 || ^3.0", "rlanvin/php-rrule": "^2.3.1", "spatie/calendar-links": "^1.0", "spatie/icalendar-generator": "^2.3.3", From 772d43dda70cdaf792abf03a670d0c9c26708760 Mon Sep 17 00:00:00 2001 From: edalzell Date: Sat, 12 Apr 2025 17:42:09 -0700 Subject: [PATCH 2/2] add version to testing matrix --- .github/workflows/test.yml | 11 +++++++++-- composer.json | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c25b68a..1f699c6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,9 +10,16 @@ jobs: strategy: matrix: os: [ubuntu-latest] - php: [8.2, 8.3] - laravel: [11.*] + php: [8.2, 8.3, 8.4] + laravel: [11.*, 12.*] dependency-version: [prefer-stable] + exclude: + - php: 8.1 + laravel: 11.* + - php: 8.1 + laravel: 12.* + - php: 8.4 + laravel: 10.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ubuntu-latest steps: - name: Checkout code diff --git a/composer.json b/composer.json index 5ab99f8..a16c084 100644 --- a/composer.json +++ b/composer.json @@ -37,7 +37,7 @@ "require": { "php": "^8.2", "edalzell/forma": "^2.0 || ^3.0", - "nesbot/carbon": "^2.0 || ^3.0", + "nesbot/carbon": "^2.0", "rlanvin/php-rrule": "^2.3.1", "spatie/calendar-links": "^1.0", "spatie/icalendar-generator": "^2.3.3",