File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Tests/DependencyInjection Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 6
6
use PHPUnit \Framework \TestCase ;
7
7
8
8
use function class_exists ;
9
+ use function extension_loaded ;
10
+
11
+ use const PHP_VERSION_ID ;
9
12
10
13
class ConfigurationTest extends TestCase
11
14
{
@@ -23,8 +26,13 @@ class ConfigurationTest extends TestCase
23
26
/** @runInSeparateProcess */
24
27
public function testGetConfigTreeBuilderDoNotUseDoctrineCommon (): void
25
28
{
29
+ if (extension_loaded ('pcov ' ) && PHP_VERSION_ID >= 80100 ) {
30
+ $ this ->markTestSkipped ('Segfaults, see https://github.com/krakjoe/pcov/issues/84 ' );
31
+ }
32
+
26
33
$ configuration = new Configuration (true );
27
34
$ configuration ->getConfigTreeBuilder ();
35
+
28
36
$ this ->assertFalse (class_exists ('Doctrine\Common\Proxy\AbstractProxyFactory ' , false ));
29
37
}
30
38
}
Original file line number Diff line number Diff line change 34
34
"symfony/cache" : " ^4.3.3|^5.0|^6.0" ,
35
35
"symfony/config" : " ^4.4.3|^5.0|^6.0" ,
36
36
"symfony/console" : " ^3.4.30|^4.3.3|^5.0|^6.0" ,
37
- "symfony/dependency-injection" : " ^4.3.3 |^5.0|^6.0" ,
37
+ "symfony/dependency-injection" : " ^4.4.18 |^5.0|^6.0" ,
38
38
"symfony/deprecation-contracts" : " ^2.1|^3" ,
39
39
"symfony/doctrine-bridge" : " ^4.4.22|^5.2.7|^6.0" ,
40
40
"symfony/framework-bundle" : " ^3.4.30|^4.3.3|^5.0|^6.0" ,
You can’t perform that action at this time.
0 commit comments