forked from magento/magento2-functional-testing-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·55 lines (55 loc) · 1.66 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
{
"name": "magento/magento2-functional-testing-framework",
"description": "Magento2 Functional Testing Framework",
"type": "library",
"version": "2.1.2",
"license": "AGPL-3.0",
"keywords": ["magento", "automation", "functional", "testing"],
"config": {
"sort-packages": true
},
"require": {
"php": "7.0.2|7.0.4|~7.0.6|~7.1.0|~7.2.0",
"allure-framework/allure-codeception": "~1.2.6",
"codeception/codeception": "~2.3.4",
"consolidation/robo": "^1.0.0",
"epfremme/swagger-php": "^2.0",
"flow/jsonpath": ">0.2",
"fzaninotto/faker": "^1.6",
"mustache/mustache": "~2.5",
"symfony/process": ">=2.7 <3.4",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "1.5.3",
"sebastian/phpcpd": "~3.0",
"brainmaestro/composer-git-hooks": "^2.3",
"codeception/aspect-mock": "^2.0",
"goaop/framework": "2.1.2",
"codacy/coverage": "^1.4",
"phpmd/phpmd": "^2.6.0",
"rregeer/phpunit-coverage-check": "^0.1.4",
"php-coveralls/php-coveralls": "^1.0",
"symfony/stopwatch": "~3.4.6"
},
"autoload": {
"psr-4": {
"Magento\\FunctionalTestingFramework\\": "src/Magento/FunctionalTestingFramework",
"MFTF\\": "dev/tests/functional/MFTF"
}
},
"autoload-dev": {
"psr-4": {
"tests\\unit\\": "dev/tests/unit"
}
},
"scripts": {
"tests": "bin/phpunit-checks",
"static": "bin/static-checks"
},
"extra": {
"hooks": {
"pre-push": "bin/all-checks"
}
}
}