Skip to content

Commit

Permalink
Laravel 10 support (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
qschmick authored Feb 24, 2023
1 parent 05b88e7 commit 7887922
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: PHPStan

on:
push:
branches:
- master
branches: [main, 3.x, 2.x, 1.x]
pull_request:

jobs:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: run-tests

on:
push:
branches: [main]
branches: [main, 3.x, 2.x, 1.x]
pull_request:
branches: [main]
branches: [main, 3.x, 2.x, 1.x]

jobs:
test:
Expand All @@ -14,10 +14,12 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.0, 8.1]
laravel: [8.*]
laravel: [8.*, 9.*, 10.*]
stability: [prefer-stable]
include:
- laravel: 8.*
- laravel: 9.*
- laravel: 10.*

name: P${{ matrix.php }} - L${{ 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 @@ -21,8 +21,8 @@
"php": "^8.0.0|^8.1.0",
"always-open/laravel-request-logger": "^2.1",
"guzzlehttp/guzzle": "^7.4",
"illuminate/contracts": "^9.0",
"illuminate/support": "^9.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"spatie/data-transfer-object": "^3.7",
"spatie/laravel-package-tools": "^1.9.2",
"symfony/property-access": "^6.0",
Expand Down

0 comments on commit 7887922

Please sign in to comment.