From 597f6acf4bbf80d7b51293047efc069460656a2c Mon Sep 17 00:00:00 2001 From: Lucas van Staden Date: Thu, 22 Dec 2016 09:59:05 +0800 Subject: [PATCH] fix composer bug --- composer.json | 59 ++++++++++++++++++++++++++++++++------------------- 1 file changed, 37 insertions(+), 22 deletions(-) diff --git a/composer.json b/composer.json index 7dccbe0..4670d6e 100644 --- a/composer.json +++ b/composer.json @@ -1,25 +1,40 @@ { - "name": "proxiblue/newrelic", - "type": "magento-module", - "license": "OSL-3.0", - "homepage": "https://github.com/ProxiBlue/NewRelic", - "description": "Magento extension to integrate New Relic", - "authors": [ - { - "name": "Lucas van Staden", - "email": "sales@proxiblue.com.au" - } - ], - "require": { - "magento-hackathon/magento-composer-installer": "*" - }, - "extra": { - "map": [ - ["/app/code/community/ProxiBlue/NewRelic/", "/app/code/community/ProxiBlue/NewRelic/"], - ["/app/etc/modules/ProxiBlue_NewRelic.xml", "/app/etc/modules/ProxiBlue_NewRelic.xml"], - ["/app/design/adminhtml/default/default/template/dashboard/proxiblue_newrelic.phtml", "/app/design/adminhtml/default/default/template/dashboard/proxiblue_newrelic.phtml"], - ["/app/code/local/Mage/Core/Exception.php", "/app/code/local/Mage/Core/Exception.php"], - ["/js/newrelic.js", "/js/newrelic.js"], - ] + "name": "proxiblue/newrelic", + "type": "magento-module", + "license": "OSL-3.0", + "homepage": "https://github.com/ProxiBlue/NewRelic", + "description": "Magento extension to integrate New Relic", + "authors": [ + { + "name": "Lucas van Staden", + "email": "sales@proxiblue.com.au" } + ], + "require": { + "magento-hackathon/magento-composer-installer": "*" + }, + "extra": { + "map": [ + [ + "/app/code/community/ProxiBlue/NewRelic/", + "/app/code/community/ProxiBlue/NewRelic/" + ], + [ + "/app/etc/modules/ProxiBlue_NewRelic.xml", + "/app/etc/modules/ProxiBlue_NewRelic.xml" + ], + [ + "/app/design/adminhtml/default/default/template/dashboard/proxiblue_newrelic.phtml", + "/app/design/adminhtml/default/default/template/dashboard/proxiblue_newrelic.phtml" + ], + [ + "/app/code/local/Mage/Core/Exception.php", + "/app/code/local/Mage/Core/Exception.php" + ], + [ + "/js/newrelic.js", + "/js/newrelic.js" + ] + ] + } }