diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1ac924e..5b650d6 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,7 +15,7 @@ jobs: matrix: os: [ubuntu-20.04] php: [8.4, 8.3, 8.2, 8.1] - laravel: ["10.*", "11.*"] + laravel: ['10.*', '11.*', '12.*'] ffmpeg: [5.0, 4.4] dependency-version: [prefer-lowest, prefer-stable] include: @@ -23,11 +23,15 @@ jobs: testbench: 8.* - laravel: 11.* testbench: 9.* + - laravel: 12.* + testbench: 10.* exclude: - laravel: 11.* php: 8.1 - laravel: 10.* php: 8.4 + - laravel: 12.* + php: 8.1 name: ${{ matrix.os }} - P${{ matrix.php }} - L${{ matrix.laravel }} - FF${{ matrix.ffmpeg }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index edbc653..4c90626 100755 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ ], "require": { "php": "^8.1|^8.2|^8.3|^8.4", - "illuminate/contracts": "^10.0|^11.0", + "illuminate/contracts": "^10.0|^11.0|^12.0", "php-ffmpeg/php-ffmpeg": "^1.2", "ramsey/collection": "^2.0" }, @@ -29,8 +29,8 @@ "league/flysystem-memory": "^3.10", "mockery/mockery": "^1.4.4", "nesbot/carbon": "^2.66|^3.0", - "orchestra/testbench": "^8.0|^9.0", - "phpunit/phpunit": "^10.4", + "orchestra/testbench": "^8.0|^9.0|^10.0", + "phpunit/phpunit": "^10.4|^11.5.3", "spatie/image": "^2.2|^3.3", "spatie/phpunit-snapshot-assertions": "^5.0" },