msgphp / eav-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
Basic entity-attribute-value management (the `EAV` domain)
v0.15.1
2020-03-08 13:52 UTC
Requires
- msgphp/eav: ^0.15
- symfony/config: ^3.4 || ^4.4 || ^5.0
- symfony/dependency-injection: ^3.4 || ^4.4 || ^5.0
- symfony/http-kernel: ^3.4 || ^4.4 || ^5.0
This package is auto-updated.
Last update: 2023-11-23 16:25:59 UTC
README
msgphp/* repositories are not actively developed/supported anymore.
Use in production on your own risks.
If you want to do some hotfixes - please do PR directly in target repository instead of previous msgphp/msgphp monorepository
Entity-Attribute-Value Bundle
A Symfony bundle for basic EAV management.
Installation
composer require msgphp/eav-bundle
Configuration
<?php // config/packages/msgphp_eav.php use MsgPhp\Eav\Attribute; use MsgPhp\Eav\AttributeValue; use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; return function (ContainerConfigurator $container) { $container->extension('msgphp_eav', [ 'class_mapping' => [ Attribute::class => \App\Entity\Attribute::class, AttributeValue::class => \App\Entity\AttributeValue::class, ], ]); };
Documentation
- Read the main documentation
- Try the Symfony demo application
- Get support on Symfony's Slack
#msgphpchannel or raise an issue