Skip to content

Commit d659c38

Browse files
committed
conflict fix
2 parents 0045e2f + 0d7ca66 commit d659c38

File tree

5 files changed

+43
-28
lines changed

5 files changed

+43
-28
lines changed

composer.json

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,30 @@
66
"license": "OSL-3.0",
77
"repositories": {
88
"repo.magento.com": {
9-
"type": "composer",
10-
"url": "https://repo.magento.com/"
9+
"type": "composer",
10+
"url": "https://repo.magento.com/"
1111
}
1212
},
1313
"require": {
1414
"php": "^8.0",
1515
"ext-json": "*",
1616
"composer/composer": "^1.9 || ^2.0",
1717
"composer/semver": "@stable",
18-
"symfony/config": "^4.4||^5.0||^6.0",
19-
"symfony/console": "^4.4||^5.0||^6.0",
20-
"symfony/dependency-injection": "^4.4||^5.0||^6.0",
21-
"symfony/process": "^4.4||^5.0||^6.0",
22-
"symfony/proxy-manager-bridge": "^4.4||^5.0||^6.0",
23-
"symfony/yaml": "^4.4||^5.0||^6.0",
24-
"monolog/monolog": "^2.3||^2.7",
25-
"magento/quality-patches": "^1.1.0"
18+
"symfony/config": "^3.3||^4.4||^5.0||^6.0",
19+
"symfony/console": "^2.6||^4.0||^5.0||^6.0",
20+
"symfony/dependency-injection": "^3.3||^4.3||^5.0||^6.0",
21+
"symfony/process": "^2.1 || ^4.1 || ^5.1 || ^5.4 || ^6.4",
22+
"symfony/proxy-manager-bridge": "^3.3||^4.3||^5.0||^6.0",
23+
"symfony/yaml": "^3.3||^4.0||^5.0||^6.0",
24+
"monolog/monolog": "^1.25||^2.3||^2.7"
2625
},
2726
"require-dev": {
28-
"codeception/codeception": "^4.1",
29-
"codeception/module-asserts": "^1.2",
30-
"codeception/module-db": "^1.0",
31-
"codeception/module-phpbrowser": "^1.0",
32-
"codeception/module-rest": "^1.2",
33-
"consolidation/robo": "^2.0",
27+
"codeception/codeception": "^4.1 || ^5.1",
28+
"codeception/module-asserts": "^1.2 || ^3.0",
29+
"codeception/module-db": "^1.0 || ^3.0",
30+
"codeception/module-phpbrowser": "^1.0 || ^3.0",
31+
"codeception/module-rest": "^1.2 || ^3.0",
32+
"consolidation/robo": "^1.2 || ^3.0",
3433
"phpmd/phpmd": "@stable",
3534
"phpunit/phpunit": "^8.5 || ^9.5",
3635
"squizlabs/php_codesniffer": "^3.0"

src/Test/Functional/Acceptance/Acceptance82Cest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protected function patchesDataProvider(): array
2020
return [
2121
['templateVersion' => '2.4.6', 'magentoVersion' => '2.4.6'],
2222
['templateVersion' => '2.4.6', 'magentoVersion' => '2.4.6-p1'],
23-
['templateVersion' => '2.4.7-beta', 'magentoVersion' => null],
23+
['templateVersion' => '2.4.7', 'magentoVersion' => null],
2424
];
2525
}
2626
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
declare(strict_types=1);
7+
8+
namespace Magento\CloudPatches\Test\Functional\Acceptance;
9+
10+
/**
11+
* @group php83
12+
*/
13+
class Acceptance83Cest extends AcceptanceCest
14+
{
15+
/**
16+
* @return array
17+
*/
18+
protected function patchesDataProvider(): array
19+
{
20+
return [
21+
['templateVersion' => '2.4.7', 'magentoVersion' => '2.4.7'],
22+
];
23+
}
24+
}

src/Test/Functional/Acceptance/AcceptanceCest.php

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77

88
namespace Magento\CloudPatches\Test\Functional\Acceptance;
99

10-
/**
11-
* @group php83
12-
*/
13-
class AcceptanceCest extends AbstractCest
10+
abstract class AcceptanceCest extends AbstractCest
1411
{
1512
/**
1613
* @param \CliTester $I
@@ -46,10 +43,5 @@ public function testPatches(\CliTester $I, \Codeception\Example $data): void
4643
/**
4744
* @return array
4845
*/
49-
protected function patchesDataProvider(): array
50-
{
51-
return [
52-
['templateVersion' => '2.4.7-beta-test', 'magentoVersion' => '2.4.7-beta401'],
53-
];
54-
}
46+
abstract protected function patchesDataProvider(): array;
5547
}

src/Test/Functional/Acceptance/PatchApplierCest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function _before(\CliTester $I): void
2121
{
2222
parent::_before($I);
2323

24-
$this->prepareTemplate($I, '2.4.7-beta-test');
24+
$this->prepareTemplate($I, '2.4.7');
2525
$I->copyFileToWorkDir('files/debug_logging/.magento.env.yaml', '.magento.env.yaml');
2626
}
2727

0 commit comments

Comments
 (0)