Skip to content

Commit 4593886

Browse files
Merge pull request #145 from magento-commerce/MCLOUD-13147
MCLOUD-13147: Fixed functional test for PHP8.3<=
2 parents 79fd367 + 1e6d756 commit 4593886

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
"name": "magento/magento-cloud-docker",
33
"description": "Magento Cloud Docker",
44
"type": "magento2-component",
5-
"version": "1.5.0",
5+
"version": "1.4.0",
66
"license": [
77
"OSL-3.0",
88
"AFL-3.0"
99
],
1010
"require": {
1111
"php": "^8.0",
1212
"ext-json": "*",
13-
"composer/composer": "^1.9 || ^2.0",
13+
"composer/composer": "^1.9 || ^2.8 || !=2.2.16",
1414
"composer/semver": "@stable",
15-
"illuminate/config": "^10.0 || ^11.0",
15+
"illuminate/config": "^8.77 || ^10.0 || ^11.0",
1616
"symfony/config": "^4.4 || ^5.1|| ^5.4 || ^6.4",
1717
"symfony/console": "^4.4 || ^5.1 || ^5.4 || ^6.4",
1818
"symfony/dependency-injection": "^4.4 || ^5.1|| ^5.4 || ^6.4",
@@ -27,7 +27,7 @@
2727
"consolidation/robo": "^2.0 || ^3.0",
2828
"phpmd/phpmd": "@stable",
2929
"phpstan/phpstan": "^1.8 || ^2.0",
30-
"phpunit/phpunit": "^9.5 || ^10.5",
30+
"phpunit/phpunit": "^10.0",
3131
"squizlabs/php_codesniffer": "^3.7"
3232
},
3333
"bin": [
@@ -37,8 +37,7 @@
3737
"psr-4": {
3838
"Magento\\CloudDocker\\": "src/",
3939
"Magento\\CloudDocker\\Test\\Integration\\": "tests/integration",
40-
"Magento\\CloudDocker\\Test\\Functional\\": "tests/functional/",
41-
"Magento\\CloudDocker\\Test\\Functional\\Support\\": "tests/functional/_support/"
40+
"Magento\\CloudDocker\\Test\\Functional\\": "tests/functional/"
4241
}
4342
},
4443
"scripts": {

tests/functional/_support/CliTester.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
*/
66
declare(strict_types=1);
77

8-
namespace Magento\CloudDocker\Test\Functional\Support;
9-
108
/**
119
* @inheritdoc
1210
*/

tests/functional/_support/FailedInfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
declare(strict_types=1);
77

8-
namespace Magento\CloudDocker\Test\Functional\Support;
8+
namespace Codeception\Extension;
99

1010
use Codeception\Events;
1111
use Codeception\Extension;

0 commit comments

Comments
 (0)