From 33d0c494e18108a2c5c2b896d2261797aa894375 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Mon, 19 Oct 2020 23:16:40 +0200 Subject: [PATCH 1/2] Don't skip Doctrine tests on php 8. --- Tests/Functional/SetAclCommandTest.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Tests/Functional/SetAclCommandTest.php b/Tests/Functional/SetAclCommandTest.php index 892a51f9..8eb70c09 100644 --- a/Tests/Functional/SetAclCommandTest.php +++ b/Tests/Functional/SetAclCommandTest.php @@ -40,13 +40,6 @@ class SetAclCommandTest extends AbstractWebTestCase const OBJECT_CLASS = 'Symfony\Bundle\SecurityBundle\Tests\Functional\Bundle\AclBundle\Entity\Car'; const SECURITY_CLASS = 'Symfony\Component\Security\Core\User\User'; - public static function setUpBeforeClass() - { - if (\PHP_VERSION_ID >= 80000) { - self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); - } - } - public function testSetAclUser() { $objectId = 1; From 8c23ac77dfb9cc48f1244b52528ff5331c6c08f6 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 24 Oct 2020 12:23:57 +0200 Subject: [PATCH 2/2] Remove branch-version (keep them for contracts only) --- composer.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 03ae6297..01d49e22 100644 --- a/composer.json +++ b/composer.json @@ -61,8 +61,5 @@ "/Tests/" ] }, - "minimum-stability": "dev", - "extra": { - "branch-version": "3.4" - } + "minimum-stability": "dev" }