diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 951e82cb..10db9ed8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,13 +33,16 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2, 8.3] - laravel: [10, 11] + php: [8.1, 8.2, 8.3, 8.4] + laravel: [10, 11, 12] stability: [prefer-lowest, prefer-stable] - include: - - php: 8.4 + exclude: + - php: 8.1 laravel: 11 - stability: prefer-stable + - php: 8.1 + laravel: 12 + - php: 8.4 + laravel: 10 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Stability ${{ matrix.stability }} - MySQL 5.7 diff --git a/composer.json b/composer.json index 505d0469..77c18daa 100644 --- a/composer.json +++ b/composer.json @@ -18,19 +18,19 @@ "php": "^8.1", "guzzlehttp/promises": "^1.0|^2.0", "doctrine/sql-formatter": "^1.4.1", - "illuminate/auth": "^10.48.4|^11.0.8", - "illuminate/cache": "^10.48.4|^11.0.8", - "illuminate/config": "^10.48.4|^11.0.8", - "illuminate/console": "^10.48.4|^11.0.8", - "illuminate/contracts": "^10.48.4|^11.0.8", - "illuminate/database": "^10.48.4|^11.0.8", - "illuminate/events": "^10.48.4|^11.0.8", - "illuminate/http": "^10.48.4|^11.0.8", - "illuminate/queue": "^10.48.4|^11.0.8", - "illuminate/redis": "^10.48.4|^11.0.8", - "illuminate/routing": "^10.48.4|^11.0.8", - "illuminate/support": "^10.48.4|^11.0.8", - "illuminate/view": "^10.48.4|^11.0.8", + "illuminate/auth": "^10.48.4|^11.0.8|^12.0", + "illuminate/cache": "^10.48.4|^11.0.8|^12.0", + "illuminate/config": "^10.48.4|^11.0.8|^12.0", + "illuminate/console": "^10.48.4|^11.0.8|^12.0", + "illuminate/contracts": "^10.48.4|^11.0.8|^12.0", + "illuminate/database": "^10.48.4|^11.0.8|^12.0", + "illuminate/events": "^10.48.4|^11.0.8|^12.0", + "illuminate/http": "^10.48.4|^11.0.8|^12.0", + "illuminate/queue": "^10.48.4|^11.0.8|^12.0", + "illuminate/redis": "^10.48.4|^11.0.8|^12.0", + "illuminate/routing": "^10.48.4|^11.0.8|^12.0", + "illuminate/support": "^10.48.4|^11.0.8|^12.0", + "illuminate/view": "^10.48.4|^11.0.8|^12.0", "livewire/livewire": "^3.4.9", "symfony/console": "^6.0|^7.0", "nesbot/carbon": "^2.67|^3.0" @@ -38,7 +38,7 @@ "require-dev": { "guzzlehttp/guzzle": "^7.7", "mockery/mockery": "^1.0", - "orchestra/testbench": "^8.23.1|^9.0", + "orchestra/testbench": "^8.23.1|^9.0|^10.0", "pestphp/pest": "^2.0", "pestphp/pest-plugin-laravel": "^2.2", "phpstan/phpstan": "^1.11",