Skip to content

Commit

Permalink
Add Laravel 9 Support (#22)
Browse files Browse the repository at this point in the history
* Add Laravel 9 Support

* wip

* wip

* wip
  • Loading branch information
dmason30 authored Feb 10, 2022
1 parent 92158d2 commit a0a3e90
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,16 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: ['8.1', '8.0', '7.4']
laravel: [8.*]
laravel: [8.*, 9.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 9.*
php: '7.4'
include:
- laravel: 8.*
testbench: ^6.23
- laravel: 9.*
testbench: ^7.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@
],
"require": {
"php": "^7.4|^8.0",
"consoletvs/charts": "^7.2",
"spatie/laravel-dashboard": "^2.0"
"consoletvs/charts": "^7.3",
"spatie/laravel-dashboard": "^2.1"
},
"require-dev": {
"mockery/mockery": "^1.4",
"nunomaduro/laravel-mojito": "^0.2.6",
"orchestra/testbench": "^6.0",
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.3",
"psalm/plugin-laravel": "^1.4",
"vimeo/psalm": "^4.3"
},
"autoload": {
Expand Down
6 changes: 3 additions & 3 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<issueHandlers>
</issueHandlers>

<plugins>
<pluginClass class="Psalm\LaravelPlugin\Plugin"/>
</plugins>
<!-- <plugins>-->
<!-- <pluginClass class="Psalm\LaravelPlugin\Plugin"/>-->
<!-- </plugins>-->
</psalm>

0 comments on commit a0a3e90

Please sign in to comment.