myintegrations/akeneo-connector-bundle

This bundle for Akeneo PIM gives you the possibility to connect your akeneo environment with other systems.

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Maintainers

Package info

bitbucket.org/myintegrations-labs/akeneo-connector

Type:symfony-bundle

pkg:composer/myintegrations/akeneo-connector-bundle

Statistics

Installs: 30

Dependents: 0

Suggesters: 0

dev-master 2018-10-21 12:57 UTC

This package is auto-updated.

Last update: 2026-04-22 06:11:24 UTC


README

MyIntegrations for Akeneo PIM >= 2.0

With this connector you can connect your data with all your other platforms.

Requirements

MyIntegrationsConnectorBundleAkeneo PIM Community Edition
v1.0. | v2.

Connector installation on Akeneo PIM

If it's not already done, install Akeneo PIM.

Get composer (with command line):

$ cd /my/pim/installation/dir
$ curl -sS https://getcomposer.org/installer | php

Then, install the module with composer:

In your `composer.json`, add the following code dependending on your Akeneo PIM version:

  • In require:
{
    "myintegrations/akeneo-connector-bundle": "^1.0"
}

Next, enter the following command line:

$php composer.phar require myintegrations/akeneo-connector-bundle

Enable the bundle in `app/AppKernel.phpfile, in theregisterBundlesfunction, before the linereturn $bundles`:

$bundles[] = new MyIntegrations\Bundle\ConnectorBundle\MyIntegrationsConnectorBundle();

Add the route in `app/routing.yml`file, under the _pim_referencedata node:

my_integrations_connector:
    prefix: /myintegrations
    resource: "@MyIntegrationsConnectorBundle/Resources/config/routing.yml"