Skip to content

Commit 2b69b3d

Browse files
committed
drop phpunit 9 support
1 parent 287cb23 commit 2b69b3d

File tree

3 files changed

+33
-9
lines changed

3 files changed

+33
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -347,10 +347,10 @@ container:
347347

348348
## Version Guidance
349349

350-
| Version | Released | PHPUnit | Status |
351-
|---------|--------------|--------------------|----------|
352-
| 5.x | Jan 23, 2024 | 9.x, 10.x and 11.x | Latest |
353-
| 4.x | Mar 28, 2019 | 8.x and 9.x | Bugfixes |
354-
| 3.x | Mar 5, 2018 | 7.x | Bugfixes |
355-
| 2.x | May 9, 2017 | 6.x | Bugfixes |
356-
| 1.x | Jul 4, 2016 | 4.x and 5.x | EOL |
350+
| Version | Released | PHPUnit | Status |
351+
|---------|--------------|-------------|----------|
352+
| 5.x | Jan 23, 2024 | 9.x, 10.x | Latest |
353+
| 4.x | Mar 28, 2019 | 8.x and 9.x | Bugfixes |
354+
| 3.x | Mar 5, 2018 | 7.x | Bugfixes |
355+
| 2.x | May 9, 2017 | 6.x | Bugfixes |
356+
| 1.x | Jul 4, 2016 | 4.x and 5.x | EOL |

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"require": {
1616
"php": "^8.1",
1717
"matthiasnoback/symfony-config-test": "^5.0",
18-
"phpunit/phpunit": "^9.6 || ^10.0 || ^11.0",
19-
"sebastian/exporter": "^4.0 || ^5.0 || ^6.0",
18+
"phpunit/phpunit": "^10.0 || ^11.0",
19+
"sebastian/exporter": " ^5.0 || ^6.0",
2020
"symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
2121
"symfony/config": "^5.4 || ^6.2 || ^7.0",
2222
"symfony/yaml": "^5.4 || ^6.2 || ^7.0"

phpunit-10.xml.dist

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
beStrictAboutOutputDuringTests="true"
6+
beStrictAboutTodoAnnotatedTests="true"
7+
colors="true"
8+
>
9+
<testsuites>
10+
<testsuite name="SymfonyDependencyInjectionTest">
11+
<directory>Tests</directory>
12+
</testsuite>
13+
</testsuites>
14+
15+
<coverage>
16+
<include>
17+
<directory suffix=".php">./</directory>
18+
</include>
19+
<exclude>
20+
<directory>./Tests</directory>
21+
<directory>./vendor</directory>
22+
</exclude>
23+
</coverage>
24+
</phpunit>

0 commit comments

Comments
 (0)