akeneo-labs / dev-toolbox-bundle
Developer Toolbox for Akeneo PIM
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 12
Forks: 3
Open Issues: 1
Type:symfony-bundle
Requires
- akeneo/pim-community-dev: ~1.3
Requires (Dev)
- fabpot/php-cs-fixer: @stable
- henrikbjorn/phpspec-code-coverage: 1.0.*@dev
- pdepend/pdepend: 1.1.*
- phpmd/phpmd: 1.*
- phpspec/phpspec: 2.0.*@dev
- squizlabs/php_codesniffer: 1.*
This package is auto-updated.
Last update: 2024-10-20 22:35:45 UTC
README
Akeneo PIM developper toolbox
This toolbox contains commands to:
- Delete attributes
- [Change the scope of an attribute] (./Resources/doc/attribute-set-scopable.md)
## 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();