PHPackages                             synolia/sylius-akeneo-plugin - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. synolia/sylius-akeneo-plugin

ActiveSylius-plugin[API Development](/categories/api)

synolia/sylius-akeneo-plugin
============================

Akeneo connector for Sylius.

v4.2.0(9mo ago)2696.0k↓25%24[7 PRs](https://github.com/synolia/SyliusAkeneoPlugin/pulls)EUPL-1.2PHPPHP ^8.2CI failing

Since Sep 30Pushed 2mo ago11 watchersCompare

[ Source](https://github.com/synolia/SyliusAkeneoPlugin)[ Packagist](https://packagist.org/packages/synolia/sylius-akeneo-plugin)[ RSS](/packages/synolia-sylius-akeneo-plugin/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (32)Versions (28)Used By (0)

[![License](https://camo.githubusercontent.com/92068728b3753da9c332b9c98c6e3034282ecb405081f8291b4e613d10dda016/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f73796e6f6c69612f73796c6975732d616b656e656f2d706c7567696e2e737667)](https://github.com/synolia/SyliusAkeneoPlugin/blob/main/LICENSE)[![CI - Analysis](https://github.com/synolia/SyliusAkeneoPlugin/actions/workflows/analysis.yaml/badge.svg?branch=main)](https://github.com/synolia/SyliusAkeneoPlugin/actions/workflows/analysis.yaml)[![CI - Sylius](https://github.com/synolia/SyliusAkeneoPlugin/actions/workflows/sylius.yaml/badge.svg?branch=main)](https://github.com/synolia/SyliusAkeneoPlugin/actions/workflows/sylius.yaml)[![Version](https://camo.githubusercontent.com/2aac77165b96ecfc0721e3cadca861df62423936da75b96b9067a4fd26897004/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73796e6f6c69612f73796c6975732d616b656e656f2d706c7567696e2e737667)](https://packagist.org/packages/synolia/sylius-akeneo-plugin)[![Total Downloads](https://camo.githubusercontent.com/6ef5664088cd73e016a39730ba25964e0044ccca38e018e7b55406bb3409cf65/68747470733a2f2f706f7365722e707567782e6f72672f73796e6f6c69612f73796c6975732d616b656e656f2d706c7567696e2f646f776e6c6f616473)](https://packagist.org/packages/synolia/sylius-akeneo-plugin)

 [    ![Sylius Logo.](https://camo.githubusercontent.com/ea9dddc934264aa7ec01cf3202c500f3d8b04448bce2571bdc74230efddda88f/68747470733a2f2f6d656469612e73796c6975732e636f6d2f73796c6975732d6c6f676f2d3830302e706e67)  ](https://sylius.com)

Sylius Akeneo Plugin
====================

[](#sylius-akeneo-plugin)

 [ ![](https://camo.githubusercontent.com/5b98e02f3693c16fd3f40037251d70ca5e1ecd2a11608dd21c9c7e3933b8942e/68747470733a2f2f73796c6975732e636f6d2f6173736574732f62616467652d617070726f7665642d62792d73796c6975732e706e67) ](https://plugins.sylius.com/plugin/akeneo-plugin/)

This plugin allow you to import data from [Akeneo PIM](https://www.akeneo.com/).

Features
--------

[](#features)

- Configure your Akeneo Account - [Documentation](docs/CONFIGURE.md)
- Configure which data should be imported and how it will be imported. - [Documentation](docs/CONFIGURE_DETAIL.md)
- Customize imports according to your business needs. - [Documentation](docs/CUSTOMIZE.md)
- Launch imports through Cli or Back-Office - [Documentation](docs/LAUNCH.md)

Requirements
------------

[](#requirements)

VersionPHP^8.2Sylius^2.0Akeneo PIM&gt;=v6.0Installation
------------

[](#installation)

1. Add the bundle and dependencies in your composer.json :

    ```
    composer require synolia/sylius-akeneo-plugin --no-scripts
    ```
2. Enable the plugin in your `config/bundles.php` file by add

    ```
    Synolia\SyliusAkeneoPlugin\SynoliaSyliusAkeneoPlugin::class => ['all' => true],
    ```
3. Import required config in your `config/packages/_sylius.yaml` file:

    ```
    imports:
        - { resource: "@SynoliaSyliusAkeneoPlugin/config/config.yaml" }
    ```
4. Import routing in your `config/routes.yaml` file:

    ```
    synolia_akeneo:
        resource: "@SynoliaSyliusAkeneoPlugin/config/routes.yaml"
        prefix: '/%sylius_admin.path_name%'
    ```
5. Add Asset trait to Product.php and ProductVariant.php entities and add TaxonAttributes trait to Taxon entity

    ```
