-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcomposer.json
56 lines (56 loc) · 1.57 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
{
"name": "tddwizard/magento2-fixtures",
"description": "Fixture library for Magento 2 integration tests",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Fabian Schmengler",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"TddWizard\\Fixtures\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TddWizard\\Fixtures\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "^7.1|^8.0",
"magento/framework": "^102.0|^103.0",
"magento/zendframework1": "^1.14",
"magento/module-catalog": "^103.0|^104.0",
"magento/module-catalog-inventory": "^100.3",
"magento/module-checkout": "^100.3",
"magento/module-customer": "^102.0|^103.0",
"magento/module-directory": "^100.3",
"magento/module-indexer": "^100.3",
"magento/module-payment": "^100.3",
"magento/module-quote": "^101.1",
"magento/module-sales": "^102.0|^103.0",
"fakerphp/faker": "^1.9.1"
},
"require-dev": {
"ext-json": "*",
"magento/module-store": "^101.0",
"phpunit/phpunit": "^6.0|^9.0",
"pds/skeleton": "^1.0",
"phpro/grumphp": "^0.19.0",
"phpstan/phpstan": "^0.12.0",
"squizlabs/php_codesniffer": "^3.3.1"
}
}