From dac29180ee79df4f258bda02e908e01550ac4ac4 Mon Sep 17 00:00:00 2001 From: MCMXCII Date: Thu, 30 Mar 2017 10:14:48 +0100 Subject: [PATCH] Updated the hackathon dependency and added symlinks The problem I was having was Hackathon 2.1.1 was pulling in a dead dependency and so would break my composer update. Updating Hackathon to asterik should pull in the 1.3.2 tag, which works fine. --- composer.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/composer.json b/composer.json index 3c73c4f..5c7bffb 100644 --- a/composer.json +++ b/composer.json @@ -1,15 +1,15 @@ { - "name": "drobinson/aoe_gridsearch", - "license": "GPL-3.0+", - "type": "magento-module", - "description": "Added Magento Grid Search Functionality", - "require": { - "magento-hackathon/magento-composer-installer": "2.1.1" - }, - "authors":[ - { - "name":"David Robinson", - "email":"{firstname}.{lastname}@aoe.com" - } + "name": "drobinson/aoe_gridsearch", + "type": "magento-module", + "description": "Added Magento Grid Search Functionality", + "license": "GPL-3.0+", + "require": { + "magento-hackathon/magento-composer-installer": "*" + }, + "extra": { + "map": [ + ["app/etc/modules/Aoe_GridSearch.xml","app/etc/modules/Aoe_GridSearch.xml"], + ["app/code/community/Aoe/GridSearch/","app/code/community/Aoe/GridSearch/"] ] + } }