Skip to content

Commit ec9b559

Browse files
Update: support laravel 9
1 parent cdd3b42 commit ec9b559

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,19 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest]
16-
php: [7.4, 8.0]
17-
laravel: [8.*, 7.*]
16+
php: [8.1, 8.0, 7.4]
17+
laravel: [9.*, 8.*, 7.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 9.*
21+
testbench: 7.*
2022
- laravel: 8.*
2123
testbench: ^6.23
2224
- laravel: 7.*
2325
testbench: ^5.20
26+
exclude:
27+
- laravel: 7.*
28+
php: 8.1
2429

2530
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2631

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"require": {
2020
"php": "^7.4|^8.0",
2121
"facebook/php-business-sdk": "^12.0",
22-
"illuminate/http": "^7.0|^8.0",
23-
"illuminate/support": "^7.0|^8.0"
22+
"illuminate/http": "^7.0|^8.0|^9.0",
23+
"illuminate/support": "^7.0|^8.0|^9.0"
2424
},
2525
"require-dev": {
2626
"friendsofphp/php-cs-fixer": "^3.3",
27-
"orchestra/testbench": "^5.0|^6.0",
27+
"orchestra/testbench": "^5.0|^6.0|^7.0",
2828
"phpunit/phpunit": "^9.0"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)