msgphp / eav-bundle
Basic entity-attribute-value management (the `EAV` domain)
Installs: 19 944
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Type:symfony-bundle
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
- dev-master / 0.16.x-dev
- v0.15.1
- v0.15.0
- v0.14.0
- v0.13.0
- v0.12.0
- v0.11.0
- v0.10.0
- v0.9.1
- v0.9.0
- v0.8.0
- v0.7.0
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.0
- v0.4.4
- v0.4.3
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.1
- v0.3.0
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.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
#msgphp
channel or raise an issue