ikuzostudio/matomo-plugin

Integrate Matomo ecommerce tracking into Sylius.


README

68747470733a2f2f64656d6f2e73796c6975732e636f6d2f6173736574732f73686f702f696d672f6c6f676f2e706e67

Matomo Plugin

Integrate Matomo ecommerce tracking into Sylius.

/!\ Currently in alpha /!\

Quickstart

$ composer require ikuzostudio/matomo-plugin

Add plugin dependencies to your config/bundles.php file:

return [
  // ...
  Ikuzo\SyliusMatomoPlugin\IkuzoSyliusMatomoPlugin::class => ['all' => true],
];

Import required config in your config/packages/_sylius.yaml file:

# config/packages/_sylius.yaml

imports:
  ...
  - { resource: "@IkuzoSyliusMatomoPlugin/Resources/config/app/config.yaml"}

Extend your Channel entity

// [...]
use Sylius\Component\Core\Model\Channel as BaseChannel;
use Ikuzo\SyliusMatomoPlugin\Model\MatomoChannelInterface;
use Ikuzo\SyliusMatomoPlugin\Model\MatomoChannelTrait;

/**
 * @ORM\Table(name="sylius_channel")
 * @ORM\Entity()
 */
class Channel extends BaseChannel implements MatomoChannelInterface
{
  use MatomoChannelTrait;
}

Update your database

$ bin/console doctrine:schema:update --force

Then configure your credentials from channel form

config.png