Skip to content

Commit 7aed85f

Browse files
committedMar 25, 2021
- fix package type
- set 2.3.2 as a minimum magento version for required magento modules
1 parent 901c256 commit 7aed85f

File tree

15 files changed

+292
-291
lines changed

15 files changed

+292
-291
lines changed
 

‎_metapackage/composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"OSL-3.0",
66
"AFL-3.0"
77
],
8-
"version": "0.0.1",
8+
"type": "metapackage",
9+
"version": "0.0.0",
910
"prefer-stable": true,
1011
"require": {
1112
"php": "~7.2.0||~7.3.0||~7.4.0",
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
2-
"name": "magento/module-bundle-product-data-exporter",
3-
"description": "Bundle product data exporter",
4-
"config": {
5-
"sort-packages": true
6-
},
7-
"type": "magento2-module",
8-
"license": [
9-
"OSL-3.0",
10-
"AFL-3.0"
11-
],
12-
"autoload": {
13-
"files": [
14-
"registration.php"
2+
"name": "magento/module-bundle-product-data-exporter",
3+
"description": "Bundle product data exporter",
4+
"config": {
5+
"sort-packages": true
6+
},
7+
"type": "magento2-module",
8+
"license": [
9+
"OSL-3.0",
10+
"AFL-3.0"
1511
],
16-
"psr-4": {
17-
"Magento\\BundleProductDataExporter\\": ""
12+
"autoload": {
13+
"files": [
14+
"registration.php"
15+
],
16+
"psr-4": {
17+
"Magento\\BundleProductDataExporter\\": ""
18+
}
19+
},
20+
"require": {
21+
"php": "~7.2.0||~7.3.0||~7.4.0",
22+
"magento/framework": ">=102.0.2",
23+
"magento/module-data-exporter": "*",
24+
"magento/module-catalog-data-exporter": "*",
25+
"magento/module-eav": ">=102.0.2",
26+
"magento/module-store": ">=101.0.2",
27+
"magento/module-bundle": ">=100.3.2",
28+
"magento/module-catalog": ">=103.0.2"
1829
}
19-
},
20-
"require": {
21-
"php": "~7.2.0||~7.3.0||~7.4.0",
22-
"magento/framework": "*",
23-
"magento/module-data-exporter": "*",
24-
"magento/module-catalog-data-exporter": "*",
25-
"magento/module-eav": "*",
26-
"magento/module-store": "*",
27-
"magento/module-bundle": "*",
28-
"magento/module-catalog": "*"
29-
}
30-
}
30+
}
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
{
2-
"name": "magento/module-catalog-data-exporter",
3-
"description": "Catalog data exporter",
4-
"config": {
5-
"sort-packages": true
6-
},
7-
"type": "magento2-module",
8-
"license": [
9-
"OSL-3.0",
10-
"AFL-3.0"
11-
],
12-
"autoload": {
13-
"files": [
14-
"registration.php"
2+
"name": "magento/module-catalog-data-exporter",
3+
"description": "Catalog data exporter",
4+
"config": {
5+
"sort-packages": true
6+
},
7+
"type": "magento2-module",
8+
"license": [
9+
"OSL-3.0",
10+
"AFL-3.0"
1511
],
16-
"psr-4": {
17-
"Magento\\CatalogDataExporter\\": ""
12+
"autoload": {
13+
"files": [
14+
"registration.php"
15+
],
16+
"psr-4": {
17+
"Magento\\CatalogDataExporter\\": ""
18+
}
19+
},
20+
"require": {
21+
"php": "~7.2.0||~7.3.0||~7.4.0",
22+
"magento/framework": ">=102.0.2",
23+
"magento/module-catalog": ">=103.0.2",
24+
"magento/module-eav": ">=102.0.2",
25+
"magento/module-store": ">=101.0.2",
26+
"magento/module-directory": ">=100.3.2",
27+
"magento/module-data-exporter": "*",
28+
"magento/module-customer": ">=102.0.2",
29+
"magento/module-downloadable": ">=100.3.2",
30+
"magento/module-indexer": ">=100.3.2",
31+
"magento/module-catalog-export": "*"
32+
},
33+
"suggest": {
34+
"magento/module-config": ">=101.1.2"
1835
}
19-
},
20-
"require": {
21-
"php": "~7.2.0||~7.3.0||~7.4.0",
22-
"magento/framework": "*",
23-
"magento/module-catalog": "*",
24-
"magento/module-eav": "*",
25-
"magento/module-store": "*",
26-
"magento/module-directory": "*",
27-
"magento/module-data-exporter": "*",
28-
"magento/module-customer": "*",
29-
"magento/module-downloadable": "*",
30-
"magento/module-indexer": "*",
31-
"magento/module-catalog-export": "*"
32-
},
33-
"suggest": {
34-
"magento/module-config": "*"
35-
}
36-
}
36+
}

‎app/code/Magento/CatalogExport/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
},
77
"require": {
88
"php": "~7.2.0||~7.3.0||~7.4.0",
9-
"magento/framework": "*",
10-
"magento/framework-message-queue": "*",
9+
"magento/framework": ">=102.0.2",
10+
"magento/framework-message-queue": ">=100.3.2",
1111
"magento/module-catalog-export-api": "*",
1212
"magento/module-data-exporter": "*",
1313
"nette/php-generator": "3.5.1"
@@ -25,4 +25,4 @@
2525
"Magento\\CatalogExport\\": ""
2626
}
2727
}
28-
}
28+
}

‎app/code/Magento/CatalogExportApi/composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"require": {
88
"php": "~7.2.0||~7.3.0||~7.4.0",
9-
"magento/framework": "*",
9+
"magento/framework": ">=102.0.2",
1010
"nette/php-generator": "^3.5"
1111
},
1212
"type": "magento2-module",
@@ -22,4 +22,4 @@
2222
"Magento\\CatalogExportApi\\": ""
2323
}
2424
}
25-
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
{
2-
"name": "magento/module-catalog-inventory-data-exporter",
3-
"description": "Catalog inventory data exporter",
4-
"config": {
5-
"sort-packages": true
6-
},
7-
"type": "magento2-module",
8-
"license": [
9-
"OSL-3.0",
10-
"AFL-3.0"
11-
],
12-
"autoload": {
13-
"files": [
14-
"registration.php"
2+
"name": "magento/module-catalog-inventory-data-exporter",
3+
"description": "Catalog inventory data exporter",
4+
"config": {
5+
"sort-packages": true
6+
},
7+
"type": "magento2-module",
8+
"license": [
9+
"OSL-3.0",
10+
"AFL-3.0"
1511
],
16-
"psr-4": {
17-
"Magento\\CatalogInventoryDataExporter\\": ""
12+
"autoload": {
13+
"files": [
14+
"registration.php"
15+
],
16+
"psr-4": {
17+
"Magento\\CatalogInventoryDataExporter\\": ""
18+
}
19+
},
20+
"require": {
21+
"php": "~7.2.0||~7.3.0||~7.4.0",
22+
"magento/framework": ">=102.0.2",
23+
"magento/module-catalog-inventory": ">=100.3.2",
24+
"magento/module-store": ">=101.0.2",
25+
"magento/module-data-exporter": "*",
26+
"magento/module-catalog": ">=103.0.2",
27+
"magento/module-catalog-data-exporter": "*"
1828
}
19-
},
20-
"require": {
21-
"php": "~7.2.0||~7.3.0||~7.4.0",
22-
"magento/framework": "*",
23-
"magento/module-catalog-inventory": "*",
24-
"magento/module-store": "*",
25-
"magento/module-data-exporter": "*",
26-
"magento/module-catalog": "*",
27-
"magento/module-catalog-data-exporter": "*"
28-
}
29-
}
29+
}
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
"name": "magento/module-catalog-url-rewrite-data-exporter",
3-
"description": "Product URL data exporter",
4-
"config": {
5-
"sort-packages": true
6-
},
7-
"type": "magento2-module",
8-
"license": [
9-
"OSL-3.0",
10-
"AFL-3.0"
11-
],
12-
"autoload": {
13-
"files": [
14-
"registration.php"
2+
"name": "magento/module-catalog-url-rewrite-data-exporter",
3+
"description": "Product URL data exporter",
4+
"config": {
5+
"sort-packages": true
6+
},
7+
"type": "magento2-module",
8+
"license": [
9+
"OSL-3.0",
10+
"AFL-3.0"
1511
],
16-
"psr-4": {
17-
"Magento\\CatalogUrlRewriteDataExporter\\": ""
12+
"autoload": {
13+
"files": [
14+
"registration.php"
15+
],
16+
"psr-4": {
17+
"Magento\\CatalogUrlRewriteDataExporter\\": ""
18+
}
19+
},
20+
"require": {
21+
"php": "~7.2.0||~7.3.0||~7.4.0",
22+
"magento/framework": ">=102.0.2",
23+
"magento/module-url-rewrite": ">=101.1.2",
24+
"magento/module-store": ">=101.0.2",
25+
"magento/module-data-exporter": "*",
26+
"magento/module-catalog": ">=103.0.2"
1827
}
19-
},
20-
"require": {
21-
"php": "~7.2.0||~7.3.0||~7.4.0",
22-
"magento/framework": "*",
23-
"magento/module-url-rewrite": "*",
24-
"magento/module-store": "*",
25-
"magento/module-data-exporter": "*",
26-
"magento/module-catalog": "*"
27-
}
28-
}
28+
}
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
2-
"name": "magento/module-configurable-product-data-exporter",
3-
"description": "Configurable product data exporter",
4-
"config": {
5-
"sort-packages": true
6-
},
7-
"type": "magento2-module",
8-
"license": [
9-
"OSL-3.0",
10-
"AFL-3.0"
11-
],
12-
"autoload": {
13-
"files": [
14-
"registration.php"
2+
"name": "magento/module-configurable-product-data-exporter",
3+
"description": "Configurable product data exporter",
4+
"config": {
5+
"sort-packages": true
6+
},
7+
"type": "magento2-module",
8+
"license": [
9+
"OSL-3.0",
10+
"AFL-3.0"
1511
],
16-
"psr-4": {
17-
"Magento\\ConfigurableProductDataExporter\\": ""
12+
"autoload": {
13+
"files": [
14+
"registration.php"
15+
],
16+
"psr-4": {
17+
"Magento\\ConfigurableProductDataExporter\\": ""
18+
}
19+
},
20+
"require": {
21+
"php": "~7.2.0||~7.3.0||~7.4.0",
22+
"magento/framework": ">=102.0.2",
23+
"magento/module-configurable-product": ">=100.3.2",
24+
"magento/module-data-exporter": "*",
25+
"magento/module-product-variant-data-exporter": "*",
26+
"magento/module-catalog-data-exporter": "*",
27+
"magento/module-catalog": ">=103.0.2",
28+
"magento/module-eav": ">=102.0.2",
29+
"magento/module-store": ">=101.0.2"
1830
}
19-
},
20-
"require": {
21-
"php": "~7.2.0||~7.3.0||~7.4.0",
22-
"magento/framework": "*",
23-
"magento/module-configurable-product": "*",
24-
"magento/module-data-exporter": "*",
25-
"magento/module-product-variant-data-exporter": "*",
26-
"magento/module-catalog-data-exporter": "*",
27-
"magento/module-catalog": "*",
28-
"magento/module-eav": "*",
29-
"magento/module-store": "*"
30-
}
31-
}
31+
}

‎app/code/Magento/ConfigurationDataExporter/composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
},
77
"require": {
88
"php": "~7.3.0||~7.4.0",
9-
"magento/framework": "*",
10-
"magento/framework-message-queue": "*",
11-
"magento/module-config": "*",
12-
"magento/module-store": "*"
9+
"magento/framework": ">=102.0.2",
10+
"magento/framework-message-queue": ">=100.3.2",
11+
"magento/module-config": ">=101.1.2",
12+
"magento/module-store": ">=101.0.2"
1313
},
1414
"type": "magento2-module",
1515
"license": [
@@ -24,4 +24,4 @@
2424
"Magento\\ConfigurationDataExporter\\": ""
2525
}
2626
}
27-
}
27+
}

0 commit comments

Comments
 (0)