forked from tkotosz/BehatMagento2Extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
76 lines (76 loc) · 2.44 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
75
76
{
"name": "seec/behat-magento2-extension",
"type": "behat-extension",
"description": "Magento2 extension for Behat",
"keywords": ["magento", "magento2", "tdd","bdd","behat"],
"homepage": "https://github.com/nopenopenope/BehatMagento2Extension",
"license": "MIT",
"authors": [
{
"name": "Tibor Kotosz",
"email": "[email protected]",
"homepage": "https://github.com/tkotosz",
"role": "Developer"
},
{
"name": "Maximilian Graf Schimmelmann",
"email": "[email protected]",
"homepage": "https://www.schimmelmann.org",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.1",
"behat/behat": "^3.7",
"magento/framework": "103.0.6",
"magento/module-store": "101.1.6",
"container-interop/container-interop": "^1.2",
"symfony/dependency-injection": "^6",
"symfony/event-dispatcher": "^6",
"magento/module-authorization": "*",
"magento/module-user": "*",
"magento/module-backend": "*",
"friends-of-behat/page-object-extension": "^0.3.2",
"friends-of-behat/suite-settings-extension": "^1.1",
"seec/behat-test-runner": "^8",
"friends-of-behat/symfony-extension": "^2.0",
"react/promise": "~2.0"
},
"require-dev": {
"pdepend/pdepend": "^2.10",
"phpmd/phpmd": "^2.12",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"sebastian/phpcpd": "^6.0",
"symfony/finder": "^5.4",
"symplify/easy-coding-standard": "^11.3",
"symplify/config-transformer": "^12.0",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1"
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"SEEC\\Behat\\Magento2Extension\\": "src/",
"SEEC\\Behat\\Magento2Extension\\Features\\Bootstrap\\": "features/bootstrap"
}
},
"autoload-dev": {
"psr-4": {
"SEEC\\Behat\\Magento2Extension\\Tests\\Unit\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}