Skip to content

Commit

Permalink
Laravel 10.x support
Browse files Browse the repository at this point in the history
  • Loading branch information
erikn69 authored and freekmurze committed Jan 25, 2023
1 parent bc798d2 commit 42970e1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.0, 8.2]
laravel: ["^9.0", "^8.0"]
php: [8.2, 8.1, 8.0, 8.2]
laravel: ["^10.0", "^9.0", "^8.0"]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: "^10.0"
php: 8.0

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
"homepage": "https://github.com/spatie/activitylog",
"require": {
"php": "^8.0",
"illuminate/config": "^8.0 || ^9.0",
"illuminate/database": "^8.69 || ^9.27",
"illuminate/support": "^8.0 || ^9.0",
"illuminate/config": "^8.0 || ^9.0 || ^10.0",
"illuminate/database": "^8.69 || ^9.27 || ^10.0",
"illuminate/support": "^8.0 || ^9.0 || ^10.0",
"spatie/laravel-package-tools": "^1.6.3"
},
"require-dev": {
"ext-json": "*",
"orchestra/testbench": "^6.23 || ^7.0",
"orchestra/testbench": "^6.23 || ^7.0 || ^8.0",
"pestphp/pest": "^1.20"
},
"minimum-stability": "dev",
Expand Down

0 comments on commit 42970e1

Please sign in to comment.