cleverage/eav-api-platform-bundle

Dedicated bundle for Sidus/EAVModelBundle dependencies for ApiPlatform

dev-v1.0-dev 2020-03-10 13:44 UTC

This package is auto-updated.

Last update: 2024-04-10 22:44:44 UTC


README

This bundle provides basic support for Sidus/EAVModelBundle with ApiPlatform.

When declaring any family as a resource for the Api, you need to declare a specific class for this family:

SidusEAVModelBundle/Documentation/12-custom_classes.html

And for Hydra documenation to work you need to annotate your final classes with the @Family annotation.

Everything else is basic ApiPlatform implementation.

Installation

Require Api Platform in your composer.json (with the version you need) as well as the EAV compatibility bundle if you need to expose EAV data:

{
    # ...
    "require": {
        # ...
        "api-platform/api-platform": "2.1.*",
        "cleverage/eav-api-platform-bundle": "1.0.*"
    }
}

Add the bundles to your kernel:

<?php
        $projectBundles = [
            // ...
            new ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle(),
            new CleverAge\EAVApiPlatformBundle\CleverAgeEAVApiPlatformBundle(),
        ];

Filters

This bundle provides 6 different filters for you to use in resource class declaration in place of Doctrine's ApiPlatform's ones.

  • CleverAge\EAVApiPlatformBundle\Filter\BooleanFilter
  • CleverAge\EAVApiPlatformBundle\Filter\DateFilter
  • CleverAge\EAVApiPlatformBundle\Filter\NumericFilter
  • CleverAge\EAVApiPlatformBundle\Filter\OrderFilter
  • CleverAge\EAVApiPlatformBundle\Filter\RangeFilter
  • CleverAge\EAVApiPlatformBundle\Filter\SearchFilter