Skip to content

Commit

Permalink
added php 8 support (#22)
Browse files Browse the repository at this point in the history
* Updated Support for PHP 8.0

* Updated run-tests
  • Loading branch information
StanBarrows authored Feb 9, 2021
1 parent 0950f57 commit 1ffb739
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [7.2, 7.3, 7.4]
php: [7.2, 7.3, 7.4, 8.0]
laravel: [6, 7, 8]
dependency-version: [prefer-lowest, prefer-stable]
include:
Expand All @@ -20,8 +20,17 @@ jobs:
- laravel: 6
testbench: 4.*
exclude:
- laravel: 6
php: 8.0
- laravel: 7
php: 8.0
- laravel: 8
php: 7.2
- laravel: 8
php: 7.3
- laravel: 8
php: 8.0
dependency-version: prefer-lowest

name: P${{ matrix.php }} - L${{ matrix.laravel }}.* - ${{ matrix.dependency-version }} - ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"php": ">=7.2",
"illuminate/support": "^6.0|^7.0|^8.0",
"guzzlehttp/guzzle": "^6.0|^7.0",
"symfony/psr-http-message-bridge": "^1.3"
"symfony/psr-http-message-bridge": "^1.3|^2.0"

},
"require-dev": {
Expand Down

0 comments on commit 1ffb739

Please sign in to comment.