Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit 1ffb739

Browse files
authored
added php 8 support (#22)
* Updated Support for PHP 8.0 * Updated run-tests
1 parent 0950f57 commit 1ffb739

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [7.2, 7.3, 7.4]
12+
php: [7.2, 7.3, 7.4, 8.0]
1313
laravel: [6, 7, 8]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
@@ -20,8 +20,17 @@ jobs:
2020
- laravel: 6
2121
testbench: 4.*
2222
exclude:
23+
- laravel: 6
24+
php: 8.0
25+
- laravel: 7
26+
php: 8.0
2327
- laravel: 8
2428
php: 7.2
29+
- laravel: 8
30+
php: 7.3
31+
- laravel: 8
32+
php: 8.0
33+
dependency-version: prefer-lowest
2534

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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"php": ">=7.2",
2323
"illuminate/support": "^6.0|^7.0|^8.0",
2424
"guzzlehttp/guzzle": "^6.0|^7.0",
25-
"symfony/psr-http-message-bridge": "^1.3"
25+
"symfony/psr-http-message-bridge": "^1.3|^2.0"
2626

2727
},
2828
"require-dev": {

0 commit comments

Comments
 (0)