Skip to content

Commit df15771

Browse files
authored
Merge pull request #39 from JurianArie/laravel-13
Add support for Laravel 13
2 parents 1977745 + dbbdfbf commit df15771

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,16 @@ jobs:
127127
if: ${{ matrix.php >= 8.2 }}
128128
run: vendor/bin/phpunit --group=illuminate
129129

130+
- name: Install illuminate/database 13
131+
if: ${{ matrix.php >= 8.3 }}
132+
run: |
133+
composer require illuminate/database:^13.0 --${{ matrix.stability }} -w --prefer-dist --no-interaction --no-progress --no-update
134+
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
135+
136+
- name: Execute illuminate tests
137+
if: ${{ matrix.php >= 8.3 }}
138+
run: vendor/bin/phpunit --group=illuminate
139+
130140
- name: Run PHPStan
131141
if: ${{ matrix.eventsauce == '3.0' }}
132142
run: vendor/bin/phpstan analyze -c phpstan.doctrine2.neon

src/IlluminateMessageRepository/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"eventsauce/message-repository-table-schema": "^1.0",
1414
"eventsauce/uuid-encoding": "^1.0",
1515
"eventsauce/id-encoding": "^1.0",
16-
"illuminate/database": "^9.0||^10.0||^11.0||^12.0",
16+
"illuminate/database": "^9.0||^10.0||^11.0||^12.0||^13.0",
1717
"ramsey/uuid": "^4.1"
1818
},
1919
"autoload": {

src/IlluminateOutbox/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"require": {
1212
"eventsauce/eventsauce": "^3.0",
1313
"eventsauce/message-outbox": "^1.0",
14-
"illuminate/database": "^9.0||^10.0||^11.0||^12.0"
14+
"illuminate/database": "^9.0||^10.0||^11.0||^12.0||^13.0"
1515
},
1616
"autoload": {
1717
"psr-4": {

0 commit comments

Comments
 (0)