diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index c65daa95..658c16e8 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -9,8 +9,11 @@ jobs: strategy: fail-fast: true matrix: - php: [ "8.2", "8.3" ] - laravel: [ "10.0", "11.0" ] + php: [ "8.2", "8.3", "8.4" ] + laravel: [ "10.0", "11.0", "12.0" ] + exclude: + - laravel: "10.0" + php: "8.4" name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 00d1167d..346cacc1 100644 --- a/composer.json +++ b/composer.json @@ -42,18 +42,18 @@ "composer-runtime-api": "^2.2", "dragon-code/simple-dto": "^2.5.1", "dragon-code/support": "^6.6", - "illuminate/console": "^10.0 || ^11.0", - "illuminate/container": "^10.0 || ^11.0", - "illuminate/database": "^10.0 || ^11.0", - "illuminate/support": "^10.0 || ^11.0", + "illuminate/console": "^10.0 || ^11.0 || ^12.0", + "illuminate/container": "^10.0 || ^11.0 || ^12.0", + "illuminate/database": "^10.0 || ^11.0 || ^12.0", + "illuminate/support": "^10.0 || ^11.0 || ^12.0", "laravel/prompts": ">=0.1", "symfony/console": "^6.0 || ^7.0" }, "require-dev": { "mockery/mockery": "^1.3.1", "nesbot/carbon": "^2.62.1 || ^3.0", - "orchestra/testbench": "^8.0 || ^9.0", - "phpunit/phpunit": "^10.0", + "orchestra/testbench": "^8.0 || ^9.0 || ^10.0", + "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0", "ramsey/uuid": "^4.0" }, "conflict": { @@ -94,4 +94,4 @@ ] } } -} \ No newline at end of file +}