update msgphp bundles to 0.10

This commit is contained in:
Roland Franssen
2019-03-27 14:34:22 +01:00
parent bce79fc5f0
commit 3be0907f47
8 changed files with 19 additions and 18 deletions
@@ -0,0 +1,14 @@
<?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,
],
]);
};