diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cc4743a..16ee665 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,10 +17,19 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.3, 8.4] - laravel: [10, 11, 12] + php: [8.2, 8.3, 8.4, 8.5] + laravel: [10, 11, 12, 13] phpunit: [10.5, 11, 12] exclude: + - php: 8.2 + laravel: 13 + phpunit: 12 + - php: 8.2 + laravel: 13 + phpunit: 11 + - php: 8.2 + laravel: 13 + phpunit: 10.5 - php: 8.2 laravel: 12 phpunit: 12 @@ -33,7 +42,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -50,7 +59,7 @@ jobs: run: composer require "phpunit/phpunit:^${{ matrix.phpunit }}" --no-update - name: Install dependencies - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 diff --git a/composer.json b/composer.json index f70475c..ce2995d 100644 --- a/composer.json +++ b/composer.json @@ -23,8 +23,8 @@ "require": { "php": "^8.2", "ext-json": "*", - "illuminate/contracts": "^10.0|^11.0|^12.0", - "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", "phpunit/phpunit": "^10.5|^11.0|^12.0" }, "autoload": {