Skip to content

Commit

Permalink
Allow illuminate/support 9.0, needed if we want to upgrade to Laravel…
Browse files Browse the repository at this point in the history
… 9 (#22)

* Allow illuminate/support 9.0, needed if we want to upgrade to Laravel 9

* Github actions updated to check Laravel 9 with PHP 8.0 and PHP 8.1

* No need PHP 8.1 yet

Co-authored-by: Francescu Garoby <francescu.garoby@docndoc.fr>
  • Loading branch information
fgaroby and Francescu Garoby committed Feb 14, 2022
1 parent bcd8201 commit 6c78a80
Show file tree
Hide file tree
Showing 3 changed files with 2,403 additions and 798 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [7.4, 8.0]
laravel: [8.*]
laravel: [8.*, 9.*]
stability: [prefer-lowest, prefer-stable]
exclude:
- laravel: 9.*
php: 7.4
include:
- laravel: 8.*
testbench: ^6.6
- laravel: 9.*
testbench: ^7.0

name: PHP${{ matrix.php }} - LARAVEL${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"require": {
"php": "^7.4|^8.0",
"gajus/dindent": "^2.0.2",
"illuminate/support": "^8.0"
"illuminate/support": "^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
Expand Down
Loading

0 comments on commit 6c78a80

Please sign in to comment.