Skip to content

Commit 4c92c8b

Browse files
authored
Merge pull request #69 from Tagliatti/php8
PHP 8 Support
2 parents 1bcb358 + 0bd9d7d commit 4c92c8b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
php: [7.0, 7.1, 7.2, 7.3, 7.4]
15+
php: [7.0, 7.1, 7.2, 7.3, 7.4, 8.0]
1616
stability: [prefer-stable]
1717

1818
name: PHP ${{ matrix.php }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
_site/
44
shared/
55
Gemfile.lock
6-
composer.lock
6+
composer.lock
7+
.phpunit.result.cache

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"ext-json": "*",
2929
"ext-mbstring": "*",
3030
"ext-intl": "*",
31-
"phpunit/phpunit": "^6.5 || ^7.0"
31+
"phpunit/phpunit": "^6.5 || ^7.0 || ^9.4"
3232
},
3333
"suggest": {
3434
"opis/string": "A standalone library for manipulating multibyte strings"

0 commit comments

Comments
 (0)