forked from semaio/Magento2-ConfigImportExport
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 686 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 686 Bytes
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
{
"name": "stoopman/magento2-configimportexport",
"description": "Import/Export core_config_data values in Magento 2",
"require": {
"php": "7.0.2|7.0.4|~7.0.6|~7.1.0",
"symfony/yaml": "~2.0|~3.0",
"magento/module-config": "~101.0.0",
"magento/module-store": "~100.2.0",
"magento/framework": "~101.0.0"
},
"require-dev": {
"phpunit/phpunit": "~6.2.0"
},
"type": "magento2-module",
"license": "OSL-3.0",
"authors": [
{
"name": "Rouven Alexander Rieker",
"email": "therouv@googlemail.com"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Semaio\\ConfigImportExport\\": ""
}
}
}