Skip to content

Commit

Permalink
Add laravel 9 support (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
musmanikram authored Feb 15, 2022
1 parent af0c9a2 commit 38e30c6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,30 @@ jobs:
matrix:
os: [ ubuntu-latest, windows-latest ]
php: [ 7.2.5, 8.0 ]
laravel: [ 6.*, 8.* ]
testbench: [ ^4.0, ^6.6 ]
laravel: [ 6.*, 8.*, 9.0 ]
testbench: [ ^4.0, ^6.6, ^7.0 ]
stability: [ prefer-lowest, prefer-stable ]
exclude:
- php: 7.2.5
laravel: 8.*
- php: 7.2.5
laravel: 9.0
- php: 7.2.5
testbench: ^6.6
- php: 7.2.5
testbench: ^7.0
- laravel: 6.*
testbench: ^6.6
- laravel: 6.*
testbench: ^7.0
- laravel: 8.*
testbench: ^4.0
- laravel: 8.*
testbench: ^7.0
- laravel: 9.0
testbench: ^4.0
- laravel: 9.0
testbench: ^6.6

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

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
"require": {
"php": "^7.2.5|^8.0",
"ext-json": "*",
"illuminate/config": "^6.0|^8.0",
"illuminate/console": "^6.0|^8.0",
"illuminate/support": "^6.0|^8.0",
"illuminate/filesystem": "^6.0|^8.0",
"symfony/finder": "^4.4|^5.1"
"illuminate/config": "^6.0|^8.0|^9.0",
"illuminate/console": "^6.0|^8.0|^9.0",
"illuminate/support": "^6.0|^8.0|^9.0",
"illuminate/filesystem": "^6.0|^8.0|^9.0",
"symfony/finder": "^4.4|^5.1|^6.0"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
"orchestra/testbench": "^4.0|^6.6",
"phpunit/phpunit": "^8.5",
"vimeo/psalm": "^3.11"
"orchestra/testbench": "^4.0|^6.6|^7.0",
"phpunit/phpunit": "^8.5|^9.5",
"vimeo/psalm": "^3.11|^4.20"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 38e30c6

Please sign in to comment.