-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (35 loc) · 913 Bytes
/
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
{
"name": "yireo/magento2-integration-test-helper",
"license": "OSL-3.0",
"version": "0.0.15",
"type": "magento2-module",
"homepage": "https://www.yireo.com/software/magento-extensions/",
"description": "Magento 2 module to support integration tests in other modules",
"keywords": [
"magento",
"Magento 2",
"Yireo"
],
"authors": [
{
"name": "Jisse Reitsma (Yireo)",
"email": "jisse@yireo.com"
}
],
"require": {
"magento/framework": "^101.0.1|^101.1|^102.0|^103.0",
"symfony/finder": "^4.0 || ^5.0 || ^6.0",
"php": "8.0.* || 8.1.* || 8.2.* || 8.3.*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Yireo\\IntegrationTestHelper\\": ""
},
"files": [
"registration.php"
]
}
}