diff --git a/.github/workflows/standard-test-coverage.yml b/.github/workflows/standard-test-coverage.yml index eb14ec5..68348a3 100644 --- a/.github/workflows/standard-test-coverage.yml +++ b/.github/workflows/standard-test-coverage.yml @@ -34,11 +34,13 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - php: [ 8.1, 8.2, 8.3 ] - laravel: [ 10, 11 ] + php: [ 8.1, 8.2, 8.3, 8.4 ] + laravel: [ 10, 11, 12 ] exclude: - php: 8.1 laravel: 11 + - php: 8.1 + laravel: 12 steps: - name: Checkout code @@ -69,7 +71,7 @@ jobs: uses: shivammathur/setup-php@v2 with: coverage: pcov - php-version: 8.2 + php-version: 8.4 - name: Install dependencies run: composer install --no-interaction --prefer-dist diff --git a/composer.json b/composer.json index 4b83038..e827122 100644 --- a/composer.json +++ b/composer.json @@ -13,11 +13,11 @@ "require": { "php": "^8.1", "anik/amqp": "^2.0", - "illuminate/support": "^10.0|^11.0" + "illuminate/support": "^10.0|^11.0|^12.0" }, "require-dev": { - "phpunit/phpunit": "^10.0", - "orchestra/testbench": "^8.0|^9.0" + "phpunit/phpunit": "^10.0|^11.0", + "orchestra/testbench": "^8.0|^9.0|^10.0" }, "autoload": { "psr-4": {