Skip to content

Commit 0e9762e

Browse files
committed
Dependency updates
1 parent e82e64f commit 0e9762e

File tree

3 files changed

+19
-21
lines changed

3 files changed

+19
-21
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ src/PHPFUI/README.md
1010
composer.lock
1111
.php-cs-fixer.cache
1212
.phpunit.result.cache
13+
.phpunit.cache
1314
phpunit.xml
1415
composer.phar
1516

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"spatie/guzzle-rate-limiter-middleware": "^2.0"
1818
},
1919
"require-dev": {
20-
"phpunit/phpunit": "<11.0",
20+
"phpunit/phpunit": "<12.0",
2121
"gitonomy/gitlib": ">=1.2",
2222
"phpfui/phpunit-syntax-coverage": "^1.0",
2323
"roave/security-advisories": "dev-latest",
2424
"friendsofphp/php-cs-fixer": "^3.0",
25-
"symfony/yaml": "^6.0",
25+
"symfony/yaml": "^7.0",
2626
"phpstan/phpstan": "^1.8"
2727
},
2828
"autoload": {

phpunit.xml.dist

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
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="Basic Syntax tests">
17-
<directory>./Tests/</directory>
18-
</testsuite>
19-
</testsuites>
20-
</phpunit>
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+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
9+
cacheDirectory=".phpunit.cache"
10+
backupStaticProperties="false"
11+
>
12+
<testsuites>
13+
<testsuite name="Basic Syntax tests">
14+
<directory>./Tests/</directory>
15+
</testsuite>
16+
</testsuites>
17+
</phpunit>

0 commit comments

Comments
 (0)