akeneo-labs/dev-toolbox-bundle

Developer Toolbox for Akeneo PIM


Keywords
ecommerce, e-commerce, Toolbox, PIM, akeneo, developper
License
OSL-3.0

Documentation

DevToolboxBundle

Akeneo PIM developper toolbox

This toolbox contains commands to:

 How to install

Modify your composer.json to:

Add the bundle VCS in the composer.json

"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/akeneo-labs/DevToolboxBundle.git",
        "branch": "master"
    }
]

set the bundle as a requirement:

"require": {
    "akeneo-labs/dev-toolbox-bundle": "v1.0.0"
}

Then you can launch the following command

composer.phar require akeneo-labs/DevToolboxBundle

Now, you can add your new bundle in the app/AppKernel.php file

$bundles[] = new Pim\Bundle\DevToolboxBundle\PimDevToolboxBundle();