-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
51 lines (51 loc) · 1.46 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
{
"name": "interjar/module-configurable-child-visibility",
"description": "Magento 2.x Extension to prevent Out of Stock Children being removed from Used Product Collections.",
"type": "magento2-module",
"license": "MIT",
"version": "1.0.0",
"keywords": ["Out Of Stock", "Child Products", "Collection", "Interjar", "Magento 2"],
"homepage": "https://interjar.com",
"authors": [
{
"name": "Josh Carter",
"email": "[email protected]",
"homepage": "https://interjar.com",
"role": "Developer"
}
],
"require": {
"php": "7.0.2|7.0.4|~7.0.6|~7.1.0|~7.2.0|~7.3.0",
"magento/framework": "101.*|102.*",
"magento/module-configurable-product": "100.1.*|100.2.*|100.3.*"
},
"require-dev": {
"phpunit/phpunit": "~6.2.0",
"magento/marketplace-eqp": "^1.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Interjar\\ConfigurableChildVisibility\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Interjar\\ConfigurableChildVisibility\\Test\\": "Test/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "vcs",
"url": "https://github.com/magento/marketplace-eqp"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}