-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.08 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
{
"name": "searchspring/module-feed",
"description": "Module to generate a SearchSpring CSV Feed",
"type": "magento2-module",
"version": "1.2.3",
"license": "GPL-3.0-or-later",
"scripts": {
"test": "vendor/bin/phpunit"
},
"authors": [
{
"email": "[email protected]",
"name": "James Bathgate"
}
],
"minimum-stability": "dev",
"require": {
"magento/framework": "*",
"magento/module-catalog": "*",
"magento/module-catalog-inventory": "*",
"magento/module-configurable-product": "*",
"magento/module-customer": "*",
"magento/module-eav": "*",
"magento/module-grouped-product": "*",
"magento/module-review": "*",
"magento/module-sales": "*",
"magento/module-store": "*",
"magento/module-swatches": "*"
},
"require-dev": {
"phpunit/phpunit": "9.2"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"SearchSpring\\Feed\\": ""
}
}
}