Skip to content

Commit

Permalink
Merge pull request #10 from kilobyteno/add-laravel-10-support
Browse files Browse the repository at this point in the history
  • Loading branch information
dsbilling authored May 28, 2023
2 parents 49c5460 + a257a70 commit 9ec0998
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Tests

on: [push, pull_request]
on: [pull_request]

jobs:
test:
Expand All @@ -9,12 +9,14 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0, 8.1]
laravel: [9.*]
stability: [prefer-lowest, prefer-stable]
php: [8.1, 8.2]
laravel: [9.*, 10.*]
stability: [prefer-stable]
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 9.*
testbench: 7.*
testbench: ^7.0

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

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
],
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.13.0",
"illuminate/contracts": "^8.0|^9.0"
"spatie/laravel-package-tools": "^1.15.0",
"illuminate/contracts": "^8.0|^9.0|^10.0"
},
"require-dev": {
"nunomaduro/collision": "^5.10|^6.0",
"orchestra/testbench": "^6.22|^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"nunomaduro/collision": "^5.10|^6.0|^7.0",
"orchestra/testbench": "^6.22|^7.0|^8.0",
"pestphp/pest": "^1.23",
"pestphp/pest-plugin-laravel": "^1.3",
"phpunit/phpunit": "^9.5",
"spatie/laravel-ray": "^1.26"
"spatie/laravel-ray": "^1.32"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 9ec0998

Please sign in to comment.