Skip to content

Commit 0ebe63a

Browse files
committed
Dropping support for 7.4, as Symfony/console has 8.0 code in it.
1 parent 93d753e commit 0ebe63a

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ You must make sure autoloading is correctly configured for all classes. This me
5252
The **assertValidPHPFile** and **assertValidPHPDirectory** asserts will test for the proper namespace in the file path (for PSR-0 autoloading and fully pathed PSR-4 autoloading), but you can turn off namespace testing with **skipNamespaceTesting** or exclude a specific namespace tests with **addSkipNamespace**.
5353

5454
## PHP Version
55-
While this library only supports PHP 7.4 and higher, you can create a project and point it to PHP 5.2 or higher. The default is to prefer PHP 7 code, but to prefer or only parse PHP 5, configure phpunit.xml(.dist) with
56-
55+
While this library only supports currently supported versions of PHP, you can create a project and point it to PHP 5.2 or higher. The default is to prefer PHP 7 code, but to prefer or only parse PHP 5, configure phpunit.xml(.dist) with
5756
~~~xml
5857
<php>
5958
<env name="PHPFUI\PHPUnitSyntaxCoverage\Extensions_parser_type" value="X"/>

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,14 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=7.4 <8.2",
15+
"php": ">=8.0 <8.2",
1616
"nikic/php-parser": "^4.13"
1717
},
18+
"config": {
19+
"platform": {
20+
"php": "8.0"
21+
}
22+
},
1823
"autoload": {
1924
"psr-4": {"PHPFUI\\PHPUnitSyntaxCoverage\\": "src/PHPFUI/PHPUnitSyntaxCoverage/"}
2025
},

0 commit comments

Comments
 (0)