Skip to content

Commit 4ba4e36

Browse files
authored
Merge pull request #15 from leroy-merlin-br/chore/upgrade-laravel-11
chore(deps): adds eloquent 11 support
2 parents daa0fcc + 0c97887 commit 4ba4e36

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@ on:
55
jobs:
66
testing:
77
name: Tests
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99
strategy:
1010
matrix:
1111
php:
12-
- "8.0"
13-
- "8.1"
1412
- "8.2"
13+
- "8.3"
14+
- "8.4"
15+
- "8.5"
1516
steps:
1617
- name: Checkout
17-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1819
with:
1920
fetch-depth: 0
2021

@@ -24,7 +25,7 @@ jobs:
2425
php-version: ${{ matrix.php }}
2526

2627
- name: Composer
27-
uses: ramsey/composer-install@v2
28+
uses: ramsey/composer-install@v3
2829

2930
- name: Running tests
3031
run: vendor/bin/phpunit

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"require": {
77
"php": "^8.0",
88
"ext-json": "*",
9-
"illuminate/config": "^9.0 || ^10.0",
10-
"illuminate/support": "^9.0 || ^10.0",
9+
"illuminate/config": "^9.0 || ^10.0 || ^11.0",
10+
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
1111
"guzzlehttp/guzzle": "^7.4.5"
1212
},
1313
"require-dev": {

0 commit comments

Comments
 (0)