cleverage/eav-api-platform-bundle
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.
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(),
];
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\BooleanFilterCleverAge\EAVApiPlatformBundle\Filter\DateFilterCleverAge\EAVApiPlatformBundle\Filter\NumericFilterCleverAge\EAVApiPlatformBundle\Filter\OrderFilterCleverAge\EAVApiPlatformBundle\Filter\RangeFilterCleverAge\EAVApiPlatformBundle\Filter\SearchFilterHow can I help you explore Laravel packages today?