forked from magento/magento2-functional-testing-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·74 lines (74 loc) · 2.3 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "magento/magento2-functional-testing-framework",
"description": "Magento2 Functional Testing Framework",
"type": "library",
"version": "3.7.0",
"license": "AGPL-3.0",
"keywords": ["magento", "automation", "functional", "testing"],
"config": {
"sort-packages": true
},
"require": {
"php": ">7.3",
"ext-curl": "*",
"ext-dom": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-openssl": "*",
"allure-framework/allure-codeception": "^1.4",
"aws/aws-sdk-php": "^3.132",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.1",
"codeception/module-sequence": "^1.0",
"codeception/module-webdriver": "^1.0",
"composer/composer": "^1.9||^2.0",
"csharpru/vault-php": "^4.2.1",
"guzzlehttp/guzzle": "^7.3.0",
"monolog/monolog": "^2.3",
"mustache/mustache": "~2.5",
"nikic/php-parser": "^4.4",
"php-webdriver/webdriver": "^1.9.0",
"spomky-labs/otphp": "^10.0",
"symfony/console": "^4.4",
"symfony/dotenv": "^5.3",
"symfony/finder": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/mime": "^5.0",
"symfony/process": "^4.4",
"weew/helpers-array": "^1.3"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.3.1",
"codacy/coverage": "^1.4",
"php-coveralls/php-coveralls": "^1.0||^2.2",
"phpmd/phpmd": "^2.8.0",
"phpunit/phpunit": "^9.0",
"sebastian/phpcpd": "~6.0.0",
"squizlabs/php_codesniffer": "~3.6.0"
},
"suggest": {
"hoa/console": "Enables <pause /> action and interactive console functionality"
},
"autoload": {
"files": ["src/Magento/FunctionalTestingFramework/_bootstrap.php"],
"psr-4": {
"Magento\\FunctionalTestingFramework\\": "src/Magento/FunctionalTestingFramework",
"MFTF\\": "dev/tests/functional/tests/MFTF"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "dev/tests"
}
},
"scripts": {
"tests": "bin/phpunit-checks",
"static": "bin/static-checks"
},
"extra": {
"hooks": {
"pre-push": "bin/all-checks"
}
},
"bin": ["bin/mftf"]
}