Skip to content

Commit 20cecfd

Browse files
committed
Fix an issue with MimeType guesser and latest release of "symfony/http-foundation"
1 parent f1d9f9e commit 20cecfd

File tree

3 files changed

+864
-1371
lines changed

3 files changed

+864
-1371
lines changed

composer.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/magento2-functional-testing-framework",
33
"description": "Magento2 Functional Testing Framework",
44
"type": "library",
5-
"version": "2.6.3",
5+
"version": "2.6.4",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {
@@ -11,22 +11,26 @@
1111
"require": {
1212
"php": "7.0.2||7.0.4||~7.0.6||~7.1.0||~7.2.0||~7.3.0",
1313
"ext-curl": "*",
14+
"ext-dom": "*",
1415
"ext-json": "*",
1516
"ext-openssl": "*",
1617
"allure-framework/allure-codeception": "~1.3.0",
1718
"aws/aws-sdk-php": "^3.132",
1819
"codeception/codeception": "~2.4.5",
19-
"composer/composer": "^1.4",
20-
"consolidation/robo": "^1.0.0",
20+
"composer/composer": "^1.6",
2121
"csharpru/vault-php": "~3.5.3",
2222
"csharpru/vault-php-guzzle6-transport": "^2.0",
2323
"flow/jsonpath": ">0.2",
2424
"fzaninotto/faker": "^1.6",
2525
"monolog/monolog": "^1.0",
2626
"mustache/mustache": "~2.5",
27-
"symfony/process": "^2.8 || ^3.1 || ^4.0",
28-
"vlucas/phpdotenv": "^2.4",
29-
"php-webdriver/webdriver": "^1.8.0"
27+
"php-webdriver/webdriver": "^1.8.0",
28+
"symfony/console": "^4.4",
29+
"symfony/finder": "^4.4",
30+
"symfony/http-foundation": "^5.0",
31+
"symfony/mime": "^5.0",
32+
"symfony/process": "^4.4",
33+
"vlucas/phpdotenv": "^2.4"
3034
},
3135
"require-dev": {
3236
"squizlabs/php_codesniffer": "~3.2",
@@ -52,7 +56,7 @@
5256
"files": ["src/Magento/FunctionalTestingFramework/_bootstrap.php"],
5357
"psr-4": {
5458
"Magento\\FunctionalTestingFramework\\": "src/Magento/FunctionalTestingFramework",
55-
"MFTF\\": "dev/tests/functional/MFTF"
59+
"MFTF\\": "dev/tests/functional/tests/MFTF"
5660
}
5761
},
5862
"autoload-dev": {

0 commit comments

Comments
 (0)