nei / api-extended-bundle
Extend Akeneo API
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Type:symfony-bundle
Requires
- akeneo/pim-community-dev: ^4.0.0
This package is auto-updated.
Last update: 2025-06-14 18:49:44 UTC
README
This bundle extend the core Akeneo API to add missing functionalities.
Features:
- Add support for Product Model Delete via API.
Installing the bundle
From your application root:
$ php composer.phar require --prefer-dist "nei/api-extended-bundle=dev-master"
Enable the bundle in the app/AppKernel.php
file in the registerProjectBundles()
method:
$bundles = [ // ... new Nei\Bundle\ApiExtendedBundle\NeiApiExtendedBundle(), ]
Include the routing on the top of your main routing.yml file:
nei_api_extended: resource: "@NeiApiExtenedBundle/Resources/config/routing.yml" prefix: /
Now let's clean your cache and dump your assets:
php bin/console cache:warmup --env=prod php bin/console pim:installer:assets --env=prod