Skip to content

Commit f811810

Browse files
authored
[TASK] Bump the development dependencies
Also add versioned schema information to the PHPUnit configuration file so that the file can be auto-migrated later when we switch to a newer version of PHPUnit.
1 parent 7942a86 commit f811810

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"symfony/mime": "^4.4 || ^5.0 || ^6.0"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "^8.5",
31-
"typo3/coding-standards": "^0.4.0"
30+
"phpunit/phpunit": "^8.5.36",
31+
"typo3/coding-standards": "^0.6.1"
3232
},
3333
"bin": [
3434
"bin/tailor"

phpunit.xml.dist

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="./tests/bootstrap.php">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
4+
bootstrap="./tests/bootstrap.php">
35
<testsuites>
46
<testsuite name="Unit">
57
<directory>tests/Unit</directory>

0 commit comments

Comments
 (0)