Skip to content

Commit fc365fd

Browse files
committed
PHP 8.4
1 parent d8d4596 commit fc365fd

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.3, 8.2]
11+
php: [8.4, 8.3, 8.2]
1212
dependency-version: [prefer-stable]
1313
os: [ubuntu-latest]
1414

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=8.0 <8.4",
15+
"php": ">=8.0 <8.5",
1616
"rexxars/html-validator": ">=2.2"
1717
},
1818
"require-dev": {

phpunit.xml.dist

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="./tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
backupGlobals="false"
4+
colors="true"
5+
processIsolation="false"
6+
stopOnFailure="false"
7+
bootstrap="./tests/bootstrap.php"
8+
displayDetailsOnTestsThatTriggerDeprecations="true"
9+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
310
<testsuites>
411
<testsuite name="PHPFUI HTMLUnitTester tests">
512
<directory>./tests/</directory>

0 commit comments

Comments
 (0)