Skip to content

Commit

Permalink
Merge pull request #9 from aidan-casey/main
Browse files Browse the repository at this point in the history
Added support for PHP 8
  • Loading branch information
danharrin authored Dec 17, 2020
2 parents 36a109b + 85d4119 commit 9d1256e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 7.3]
php: [8.0, 7.4, 7.3]
laravel: [8.*, 7.*, 6.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
Expand Down Expand Up @@ -48,4 +48,4 @@ jobs:
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/phpunit
run: vendor/bin/phpunit
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
],
"require": {
"php": "^7.2",
"php": "^7.2|^8.0",
"calebporzio/sushi": "^2.1",
"illuminate/database": "^6.0 || ^7.0 || ^8.0"
},
Expand Down

0 comments on commit 9d1256e

Please sign in to comment.