Skip to content

Commit

Permalink
Merge branch 'hotfix/6.0.45'
Browse files Browse the repository at this point in the history
* hotfix/6.0.45:
  compiled assets
  use $casts instead of $dates
  fixing tests
  fixing tests
  fixing tests
  explicitely require testbench versions
  support for Laravel 10
  • Loading branch information
austintoddj committed Feb 17, 2023
2 parents ac62b14 + 4789fb3 commit 71b809c
Show file tree
Hide file tree
Showing 11 changed files with 1,002 additions and 966 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0, 8.1]
laravel: [^6.0, ^7.0, ^8.0, ^9.0]
php: [7.3, 7.4, 8.0, 8.1, 8.2]
laravel: [^6.0, ^7.0, ^8.0, ^9.0, ^10.0]
include:
- laravel: ^6.0
testbench: ^4.0
Expand All @@ -26,15 +26,27 @@ jobs:
testbench: ^6.0
- laravel: ^9.0
testbench: ^7.0
- laravel: ^10.0
testbench: ^8.0
exclude:
- php: 7.3
laravel: ^9.0
- php: 7.3
laravel: ^10.0
- php: 7.4
laravel: ^9.0
- php: 7.4
laravel: ^10.0
- php: 8.0
laravel: ^10.0
- php: 8.1
laravel: ^6.0
- php: 8.1
laravel: ^7.0
- php: 8.2
laravel: ^6.0
- php: 8.2
laravel: ^7.0

name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }}

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0"
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"laravel/legacy-factories": "^1.0",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
Expand Down
Loading

0 comments on commit 71b809c

Please sign in to comment.