Skip to content
This repository has been archived by the owner on Mar 1, 2025. It is now read-only.

Commit

Permalink
Merge pull request #19 from alexmanase/laravel-10
Browse files Browse the repository at this point in the history
Support Laravel 10
  • Loading branch information
ralphjsmit authored Feb 17, 2023
2 parents bcaeb35 + 8c5a342 commit 5e89688
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ 8.0, 8.1 ]
laravel: [ 8.*, 9.* ]
php: [ 8.1, 8.2 ]
laravel: [ 8.*, 9.*, 10.* ]
stability: [ prefer-lowest, prefer-stable ]
include:
- laravel: 8.*
testbench: ^6.23
- laravel: 9.*
testbench: ^7.0
- laravel: 10.*
testbench: ^8.0

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

Expand Down
19 changes: 10 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,20 @@
],
"require": {
"php": "^8.0",
"filament/forms": "^2.16",
"illuminate/contracts": "^8.73|^9.0",
"livewire/livewire": "^2.8",
"ryangjchandler/blade-tabler-icons": "^1.1",
"filament/forms": "^2.17",
"illuminate/contracts": "^8.73|^9.0|^10.0",
"livewire/livewire": "^2.11",
"orchestra/testbench": "^6.23|^7.0|^8.0",
"ryangjchandler/blade-tabler-icons": "^1.1|^2.0",
"spatie/laravel-package-tools": "^1.9.2",
"usernotnull/tall-toasts": "^1.5"
"usernotnull/tall-toasts": "^1.5",
"nesbot/carbon": "^2.66"
},
"require-dev": {
"nunomaduro/collision": "^5.10|^6.0",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.22|^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"nunomaduro/larastan": "^1.0|^2.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.4.0",
"phpstan/extension-installer": "^1.1",
"phpunit/phpunit": "^9.5",
"spatie/invade": "^1.0",
Expand Down

0 comments on commit 5e89688

Please sign in to comment.