myintegrations/akeneo-connector-bundle

此扩展包为 Akeneo PIM 提供了将您的 akeneo 环境与其他系统连接的可能性。

安装: 30

依赖项: 0

建议者: 0

安全: 0

类型:symfony-bundle

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

This package is auto-updated.

Last update: 2024-09-22 02:33:50 UTC


README

MyIntegrations for Akeneo PIM >= 2.0

使用此连接器,您可以连接所有其他平台的数据。

要求

MyIntegrationsConnectorBundleAkeneo PIM 社区版
v1.0. | v2.

在 Akeneo PIM 上安装连接器

如果尚未安装,请安装 Akeneo PIM

获取 composer(通过命令行)

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

然后,使用 composer 安装模块

在您的 `composer.json` 文件中,根据您的 Akeneo PIM 版本添加以下代码

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

接下来,输入以下命令行

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

`app/AppKernel.php` 文件中启用扩展包,在 registerBundles 函数中,在 return $bundles 行之前

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

`app/routing.yml` 文件中,在 _pim_reference_data 节点下添加路由

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