nei / api-extended-bundle
Extend Akeneo API
Package info
github.com/nei/ApiExtendedBundle
Type:symfony-bundle
pkg:composer/nei/api-extended-bundle
v0.3
2024-07-14 16:45 UTC
Requires
- akeneo/pim-community-dev: ^4.0.0
This package is auto-updated.
Last update: 2026-02-14 20:05:25 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