Skip to content

Commit 4e7a9b5

Browse files
committed
chore: add support for laravel 13
1 parent a504bcb commit 4e7a9b5

2 files changed

Lines changed: 12 additions & 8 deletions

File tree

‎.github/workflows/tests.yml‎

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,33 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
php: [8.5, 8.4, 8.3, 8.2]
15-
laravel: ['11.*', '12.*']
15+
laravel: ['11.*', '12.*', '13.*']
1616
stability: [prefer-lowest, prefer-stable]
1717
exclude:
1818
- php: 8.5
1919
laravel: 11.*
20+
- php: 8.2
21+
laravel: 13.*
2022
include:
2123
- laravel: 11.*
2224
testbench: ^9.2
2325
- laravel: 12.*
24-
testbench: 10.*
26+
testbench: ^10.0
27+
- laravel: 13.*
28+
testbench: ^11.0
2529

2630
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }}
2731

2832
steps:
2933
- name: Checkout code
30-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3135

3236
- name: Get Composer cache directory
3337
id: composer-cache
3438
run: |
3539
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3640
37-
- uses: actions/cache@v4
41+
- uses: actions/cache@v5
3842
with:
3943
path: ${{ steps.composer-cache.outputs.dir }}
4044
key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.laravel }}-${{ matrix.testbench }}-${{ matrix.stability }}-composer

‎composer.json‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@
1818
],
1919
"require": {
2020
"php": "^8.2",
21-
"illuminate/notifications": "^11.0|^12.0",
22-
"illuminate/support": "^11.0|^12.0",
21+
"illuminate/notifications": "^11.0|^12.0|^13.0",
22+
"illuminate/support": "^11.0|^12.0|^13.0",
2323
"minishlink/web-push": "^10.0"
2424
},
2525
"require-dev": {
2626
"larastan/larastan": "^3.1",
2727
"laravel/pint": "^1.25",
2828
"mockery/mockery": "^1.0",
29-
"orchestra/testbench": "^9.2|^10.0",
30-
"phpunit/phpunit": "^10.5|^11.5.3",
29+
"orchestra/testbench": "^9.2|^10.0|^11.0",
30+
"phpunit/phpunit": "^10.5|^11.5.3|^12.5.12",
3131
"rector/rector": "^2.0"
3232
},
3333
"autoload": {

0 commit comments

Comments
 (0)