File tree Expand file tree Collapse file tree 5 files changed +17
-9
lines changed Expand file tree Collapse file tree 5 files changed +17
-9
lines changed Original file line number Diff line number Diff line change
1
+ .phpunit.result.cache
1
2
composer.lock
2
3
phpunit.xml
3
- vendor
4
+ vendor
Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ abstract class AbstractConfigurationConstraint extends Constraint
13
13
14
14
public function __construct (ConfigurationInterface $ configuration , $ breadcrumbPath = null )
15
15
{
16
- parent ::__construct ();
16
+ if (is_callable ([Constraint::class, '__construct ' ])) {
17
+ parent ::__construct ();
18
+ }
17
19
18
20
$ this ->configuration = $ configuration ;
19
21
$ this ->breadcrumbPath = $ breadcrumbPath ;
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ public function processed_configuration_for_array_node_1()
254
254
255
255
| Version | Released | PHPUnit | Status |
256
256
| ---------| --------------| ------------| ------------|
257
- | 4.x | Mar 5, 2018 | 7.x | Latest |
257
+ | 4.x | Mar 5, 2018 | 7.x and 8.x | Latest |
258
258
| 3.x | Nov 30, 2017 | 6.x | Bugfixes |
259
259
| 2.x | Jun 18, 2016 | 4.x and 5.x | EOL |
260
260
| 1.x | Oct 12, 2014 | 3.x | EOL
Original file line number Diff line number Diff line change 17
17
"symfony/config" : " ^2.7 || ^3.4 || ^4.0"
18
18
},
19
19
"require-dev" : {
20
- "phpunit/phpunit" : " ^7.0"
20
+ "phpunit/phpunit" : " ^7.0 || ^8.0 "
21
21
},
22
22
"conflict" : {
23
23
"phpunit/phpunit" : " <7.0"
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
-
3
- <phpunit colors =" true" bootstrap =" vendor/autoload.php" >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/7.0/phpunit.xsd"
4
+ bootstrap =" vendor/autoload.php"
5
+ beStrictAboutOutputDuringTests =" true"
6
+ beStrictAboutTodoAnnotatedTests =" true"
7
+ colors =" true"
8
+ verbose =" true" >
4
9
<testsuites >
5
10
<testsuite name =" MatthiasSymfonyConfigTest" >
6
- <directory >./ Tests</directory >
11
+ <directory suffix = " Test.php " > Tests</directory >
7
12
</testsuite >
8
13
</testsuites >
9
14
10
15
<filter >
11
- <whitelist >
12
- <directory >.</directory >
16
+ <whitelist processUncoveredFilesFromWhitelist = " true " >
17
+ <directory suffix = " .php " >.</directory >
13
18
<exclude >
14
19
<directory >./Tests</directory >
15
20
<directory >./vendor</directory >
You can’t perform that action at this time.
0 commit comments