-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·61 lines (61 loc) · 1.82 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
{
"name": "thesgroup/magento2-testing-framework",
"description": "Testing framework for Magento 2 modules",
"homepage": "https://github.com/sashas777/magento2-testing-framework",
"type": "library",
"license": ["GPL-3.0"],
"keywords": ["magento", "automation", "magento2-library", "testing"],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "~8.1.0||~8.2.0||~8.3",
"magento/framework": "103.0.*",
"magento/module-webapi": "100.4.*",
"magento/magento-coding-standard": "*",
"rregeer/phpunit-coverage-check": "*",
"phpunit/phpunit": "^9.5",
"laminas/laminas-code": "^4.5",
"phpstan/phpstan": "^1.12",
"phpmd/phpmd": "~2.12.0",
"sebastian/phpcpd": "^6.0"
},
"autoload": {
"psr-4": {
"Magento\\TestFramework\\": "framework/Magento/TestFramework/",
"Magento\\Sniffs\\": "framework/Magento/Sniffs/",
"Magento\\Setup\\": "framework/Magento/Setup/",
"Magento\\PhpStan\\": "framework/Magento/PhpStan/"
}
},
"authors": [
{
"name": "Alexander Lukyanov",
"email": "support@sashas.org"
}
],
"require-dev": {
},
"scripts": {
"post-install-cmd": "vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard,../../phpcompatibility/php-compatibility/PHPCompatibility",
"post-update-cmd": "vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard,../../phpcompatibility/php-compatibility/PHPCompatibility"
},
"bin": [
"bin/phpunit-tests",
"bin/integrity-tests",
"bin/phpcs-tests",
"bin/phpmd-tests",
"bin/js-tests",
"bin/phpstan-tests",
"bin/run-all-tests",
"bin/cleanup"
],
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}