Skip to content

Commit

Permalink
Merge pull request #16 from kirschbaum-development/dev
Browse files Browse the repository at this point in the history
Laravel 10 support
  • Loading branch information
dvanscott authored Apr 2, 2023
2 parents af0558a + ce359e2 commit 27577cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Dependabot metadata
id: metadata
uses: dependabot/[email protected].5
uses: dependabot/[email protected].6
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
}
],
"require": {
"php": "^8.0",
"illuminate/contracts": "^9.0",
"illuminate/support": "^9.0",
"php": ">=8.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"livewire/livewire": "^2.10",
"spatie/laravel-package-tools": "^1.9.2"
},
Expand Down Expand Up @@ -48,7 +48,10 @@
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
Expand Down

0 comments on commit 27577cb

Please sign in to comment.