msgphp / eav-bundle
此包已被废弃,不再维护。未建议替代包。
基本实体-属性-值管理(`EAV` 领域)
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
- 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/* 仓库不再积极开发/支持。
在生产环境中使用存在风险。
如果您想进行一些热修复 - 请直接在目标仓库中提交PR,而不是之前的msgphp/msgphp monorepository
实体-属性-值包
用于基本 EAV 管理的 Symfony 包。
安装
composer require msgphp/eav-bundle
配置
<?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, ], ]); };
文档
- 阅读 主要文档
- 尝试 Symfony 演示应用
- 在 Symfony的Slack
#msgphp
频道 或 提出问题 获取支持