Skip to content

Commit d8d4596

Browse files
committed
Update dependencies
1 parent e19cd64 commit d8d4596

File tree

4 files changed

+10
-21
lines changed

4 files changed

+10
-21
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, 8.1, 8.0]
11+
php: [8.3, 8.2]
1212
dependency-version: [prefer-stable]
1313
os: [ubuntu-latest]
1414

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ vendor/
33
bin/
44
composer.lock
55
.phpunit.result.cache
6+
.phpunit.cache
67
.php-cs-fixer.cache
78
phpunit.xml

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"rexxars/html-validator": ">=2.2"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "^7.0 | <11.0",
19+
"phpunit/phpunit": "<12.0",
2020
"phpfui/phpunit-syntax-coverage": ">=1.0",
2121
"roave/security-advisories": "dev-latest",
2222
"friendsofphp/php-cs-fixer": "^3.2",

phpunit.xml.dist

+7-19
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<phpunit backupGlobals="false"
4-
backupStaticAttributes="false"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
convertDeprecationsToExceptions="true"
10-
processIsolation="false"
11-
stopOnFailure="false"
12-
bootstrap="./tests/bootstrap.php"
13-
>
14-
15-
<testsuites>
16-
<testsuite name="PHPFUI HTMLUnitTester tests">
17-
<directory>./tests/</directory>
18-
</testsuite>
19-
</testsuites>
20-
</phpunit>
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">
3+
<testsuites>
4+
<testsuite name="PHPFUI HTMLUnitTester tests">
5+
<directory>./tests/</directory>
6+
</testsuite>
7+
</testsuites>
8+
</phpunit>

0 commit comments

Comments
 (0)