Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit b793f7b

Browse files
authored
Merge pull request #695 from amcsi/attila-php8
Support and test PHP 8.0
2 parents 5cda453 + 5698a8e commit b793f7b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [7.4, 7.3, 7.2]
12+
php: [8.0, 7.4, 7.3, 7.2]
1313
laravel: [6.*, 7.*, 8.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
@@ -39,7 +39,7 @@ jobs:
3939
uses: shivammathur/setup-php@v2
4040
with:
4141
php-version: ${{ matrix.php }}
42-
extensions: curl, dom, libxml, mbstring, pdo, sqlite, pdo_sqlite, zip
42+
extensions: curl, dom, fileinfo, libxml, mbstring, pdo, sqlite, pdo_sqlite, zip
4343
coverage: pcov
4444

4545
- name: Install dependencies

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
],
2424
"require": {
25-
"php": "^7.2",
25+
"php": "^7.2|^8.0",
2626
"ext-json": "*",
2727
"cboden/ratchet": "^0.4.1",
2828
"facade/ignition-contracts": "^1.0",
@@ -39,7 +39,7 @@
3939
"symfony/psr-http-message-bridge": "^1.1|^2.0"
4040
},
4141
"require-dev": {
42-
"mockery/mockery": "^1.3",
42+
"mockery/mockery": "^1.3.3",
4343
"orchestra/testbench": "^4.0|^5.0|^6.0",
4444
"phpunit/phpunit": "^8.0|^9.0"
4545
},

0 commit comments

Comments
 (0)