diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 489a6f1..3f144f0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,16 +10,20 @@ jobs: fail-fast: true matrix: php: [8.1, 8.2, 8.3] - laravel: [10.*, 11.*] + laravel: [10.*, 11.*, 12.*] dependency-version: [prefer-lowest, prefer-stable] exclude: - php: 8.1 laravel: 11.* + - php: 8.1 + laravel: 12.* include: - laravel: 10.* testbench: 8.* - laravel: 11.* testbench: 9.* + - laravel: 12.* + testbench: 10.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index 791a8a2..2706c54 100644 --- a/composer.json +++ b/composer.json @@ -25,9 +25,9 @@ "require": { "php": "^8.1", "graylog2/gelf-php": "^1.7", - "illuminate/contracts": "^10.0|^11.0", - "illuminate/log": "^10.0|^11.0", - "illuminate/support": "^10.0|^11.0", + "illuminate/contracts": "^10.0|^11.0|^12.0", + "illuminate/log": "^10.0|^11.0|^12.0", + "illuminate/support": "^10.0|^11.0|^12.0", "monolog/monolog": "^2.0|^3.3" }, "require-dev": { @@ -36,8 +36,8 @@ "exolnet/phpcs-config": "^2.0", "laravel/pint": "^1.2", "mockery/mockery": "^1.4", - "orchestra/testbench": "^8.0|^9.0", - "phpunit/phpunit": "^10.5", + "orchestra/testbench": "^8.0|^9.0|^10.0", + "phpunit/phpunit": "^10.5|^11.5.3", "squizlabs/php_codesniffer": "^3.6" }, "autoload": {