Skip to content

Commit

Permalink
Laravel 9.x Compatibility (#33)
Browse files Browse the repository at this point in the history
* Bump dependencies for Laravel 9

* Update GitHub Actions for Laravel 9
  • Loading branch information
laravel-shift committed Feb 4, 2022
1 parent bca3257 commit 016b6f2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 7.4]
laravel: [8.*]
php: [8.0]
laravel: [9.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 9.*
testbench: 7.*

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

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
}
],
"require": {
"php": "^7.4|^8.0",
"php": "^8.0",
"ext-json": "*",
"laravel/framework": "^8.16",
"laravel/framework": "^9.0",
"laravel/serializable-closure": "^1.0"
},
"require-dev": {
"orchestra/testbench": "~6.0",
"phpunit/php-code-coverage": "^9.0",
"phpunit/phpunit": "^9.4"
"orchestra/testbench": "^7.0",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5.10"
},
"conflict": {
"mockery/mockery": "<1.4.2",
Expand Down

0 comments on commit 016b6f2

Please sign in to comment.