diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 94602a4..2a4f8e3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -127,6 +127,16 @@ jobs: if: ${{ matrix.php >= 8.2 }} run: vendor/bin/phpunit --group=illuminate + - name: Install illuminate/database 13 + if: ${{ matrix.php >= 8.3 }} + run: | + composer require illuminate/database:^13.0 --${{ matrix.stability }} -w --prefer-dist --no-interaction --no-progress --no-update + composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress + + - name: Execute illuminate tests + if: ${{ matrix.php >= 8.3 }} + run: vendor/bin/phpunit --group=illuminate + - name: Run PHPStan if: ${{ matrix.eventsauce == '3.0' }} run: vendor/bin/phpstan analyze -c phpstan.doctrine2.neon diff --git a/src/IlluminateMessageRepository/composer.json b/src/IlluminateMessageRepository/composer.json index 57f9f72..b7d9fd6 100644 --- a/src/IlluminateMessageRepository/composer.json +++ b/src/IlluminateMessageRepository/composer.json @@ -13,7 +13,7 @@ "eventsauce/message-repository-table-schema": "^1.0", "eventsauce/uuid-encoding": "^1.0", "eventsauce/id-encoding": "^1.0", - "illuminate/database": "^9.0||^10.0||^11.0||^12.0", + "illuminate/database": "^9.0||^10.0||^11.0||^12.0||^13.0", "ramsey/uuid": "^4.1" }, "autoload": { diff --git a/src/IlluminateOutbox/composer.json b/src/IlluminateOutbox/composer.json index 420d5e7..932d4fe 100644 --- a/src/IlluminateOutbox/composer.json +++ b/src/IlluminateOutbox/composer.json @@ -11,7 +11,7 @@ "require": { "eventsauce/eventsauce": "^3.0", "eventsauce/message-outbox": "^1.0", - "illuminate/database": "^9.0||^10.0||^11.0||^12.0" + "illuminate/database": "^9.0||^10.0||^11.0||^12.0||^13.0" }, "autoload": { "psr-4": {