-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
30 lines (30 loc) · 1.07 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
{
"name": "bangerkuwranger/magento2-gtid-safe-url-rewrite-fallback",
"description": "Magento 2 module that forces the category save/update observers to fall back to a (deprecated) method that doesn't require temporary tables. This allows GTID consistent category saves for Magento v2.1.x",
"type": "magento2-module",
"version": "1.0.1",
"license": [
"MIT"
],
"require": {
"php": "~5.5.0|~5.6.0|~7.0.0",
"magento/module-backend": "100.1.*",
"magento/module-catalog": "101.0.*",
"magento/module-catalog-import-export": "100.1.*",
"magento/module-eav": "100.1.*",
"magento/module-import-export": "100.1.*",
"magento/module-store": "100.1.*",
"magento/module-url-rewrite": "100.1.*",
"magento/framework": "100.1.*",
"magento/module-ui": "100.1.*",
"magento/module-catalog-url-rewrite": "100.1.*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Bangerkuwranger\\GtidSafeUrlRewriteFallback\\": ""
}
}
}