Splash Php Bundle for Akeneo PIM.
This module implement Splash Sync connector for Akeneo. It provides access to Products Objects for automated synchronisation though Splash Sync dedicated protocol.
| Branch | Akeneo | PHP | Status | Install |
|---|---|---|---|---|
| master | 7.0 | 7.3+ | Active | composer require splash/akeneo-bundle |
| 5.0 | 4.0&5.0 | 7.3+ | Active | composer require splash/akeneo-bundle |
| 3.0 | 3.0 | 7.2 | Deprecated | composer require splash/phpcore:dev-master splash/php-bundle:1.0.0 splash/akeneo-bundle:3.0.x-dev |
| 2.3 | 2.3 | 7.1 | Deprecated | composer require splash/phpcore:dev-master splash/php-bundle:1.0.0 splash/akeneo-bundle:2.3.x-dev |
| 2.1 | 2.0, 2.1 | 7.1 | Deprecated | composer require splash/phpcore:dev-master splash/php-bundle:1.0.0 splash/akeneo-bundle:2.1.x-dev |
Download Akeneo-Bundle and its dependencies to the vendor directory. You can use Composer for the automated process:
$ php composer.phar require splash/akeneo-bundleComposer will install the bundle to vendor/splash directory.
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new \Splash\Bundle\SplashBundle(), // Splash Sync Core PHP Bundle
new \Splash\Akeneo\SplashAkeneoBundle(), // Splash Bundle for Akeneo
// ...
);
}Here is the default configuration for Splash bundles:
splash:
connections:
akeneo:
name: Akeneo for Splash
id: ThisIsSplashWsId # Your Splash Server Id
key: ThisIsYourEncryptionKeyForSplash # Your Server Secret Encryption Key
config:
locale: en_US
channel: ecommerce
currency: EUR- PHP 7.4+
- Akeneo 4.0+
- An active Splash Sync User Account
For the configuration guide and reference, see: Akeneo Bundle Docmumentation
Any Pull requests are welcome!
This module is part of SplashSync project.
