Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

Latest commit

 

History

History
43 lines (32 loc) · 1.83 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.83 KB

Magento Keen IO

Magento module to send orders data to keen.io. The plugin supports the Magento Community and Enterprise edition.

Installation

Magento Keen IO uses Composer and Magento Composer Installer to handle installation of the module and its dependencies. To install Magento Keen IO you will need a copy of composer.phar in your path. If you do not have it availble, run the following commands from your terminal.

$ curl -sS https://getcomposer.org/installer | php
$ chmod a+x composer.phar

If you are already using Magento Composer Installer and have an existing composer.json, add https://github.com/deved-it/magento-keen-io to the repositories list and deved-it/magento-keen-io as a required dependency for your project. That's it!

If you do not have an existing Magento Composer Installer composer.json file defined, you can use the following template.

{
  "repositories": [
      {
        "type":"composer",
        "url":"http://packages.firegento.com"
      },
      {
        "type": "vcs",
        "url": "https://github.com/deved-it/magento-keen-io"
      }
  ],
  "require": {
      "magento-hackathon/magento-composer-installer": "*",
      "deved/magento-keen-io": "*"
  },
  "extra":{
      "magento-root-dir":"./",
      "magento-force":"true"
  }
}

To install Magento Keen IO and its dependencies just run composer.phar.

$ ./composer.phar install

Configuration

Open the Magento Admin interface and go to configuration->DEVED KEEN IO->Keen IO Configuration and fill in the fields with your Project ID and Write key. When you will receive a new order, all order data will be sent to your keen.io project.