Skip to content

Commit

Permalink
Add Laravel 10 support (#72)
Browse files Browse the repository at this point in the history
* Add Laravel 10 support

* Add php 8.1 to git workflow. Remove 7.3 and 7.4.
  • Loading branch information
mrtimbrook authored Feb 14, 2023
1 parent 47e8c62 commit a8f6cb7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.0', '7.4', '7.3']
php: ['8.1', '8.0']

name: P${{ matrix.php }}

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"issues": "https://github.com/area17/blast/issues/"
},
"require": {
"php": "^7.3|^8.0",
"php": "^7.3|^8.0|^8.1",
"ext-json": "*",
"illuminate/filesystem": "^7.0|^8.0|^9.0",
"illuminate/support": "^7.0|^8.0|^9.0",
"illuminate/view": "^7.0|^8.0|^9.0"
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"illuminate/view": "^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^6.21|^7.0"
Expand Down

0 comments on commit a8f6cb7

Please sign in to comment.