Skip to content

Commit 634eaf7

Browse files
Removed support for PHP 8.1 and Symfony 5
1 parent b366756 commit 634eaf7

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
}
4242
],
4343
"require": {
44-
"php": "^8.1",
44+
"php": "^8.2",
4545
"dragon-code/support": "^6.10",
46-
"symfony/console": "^5.3 || ^6.0 || ^7.0"
46+
"symfony/console": "^6.0 || ^7.0"
4747
},
4848
"require-dev": {
49-
"phpunit/phpunit": "^10.0",
50-
"symfony/var-dumper": "^5.3 || ^6.0 || ^7.0"
49+
"phpunit/phpunit": "^11.0",
50+
"symfony/var-dumper": "^6.0 || ^7.0"
5151
},
5252
"minimum-stability": "stable",
5353
"prefer-stable": true,

phpunit.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
55
bootstrap="vendor/autoload.php"
66
cacheDirectory=".phpunit.cache"
77
executionOrder="depends,defects"
88
colors="true"
99
failOnRisky="true"
10-
failOnWarning="true"
1110
>
1211
<testsuites>
1312
<testsuite name="default">
@@ -16,7 +15,7 @@
1615
</testsuites>
1716
<source>
1817
<include>
19-
<directory suffix=".php">src</directory>
18+
<directory>src</directory>
2019
</include>
2120
</source>
2221
</phpunit>

0 commit comments

Comments
 (0)