agence-adeliom/easy-common-bundle
Composer 安装命令:
composer require agence-adeliom/easy-common-bundle
包简介
A Symfony bundle for EasyAdmin that provide basic entity traits and a enum helper
关键字:
README 文档
README
Easy Common Bundle
Provide base utilities for Easyadmin.
Features
- A Enum polyfill for PHP 8 (< 8.1.0)
- Some Traits for entities
Versions
| Repository Branch | Version | Symfony Compatibility | PHP Compatibility | Status |
|---|---|---|---|---|
3.x |
3.x |
6.4, and 7.x |
8.2 or higher |
New features and bug fixes |
2.x |
2.x |
5.4, and 6.x |
8.0.2 or higher |
Bug fixes |
1.x |
1.x |
4.4, and 5.x |
7.2.5 or higher |
No longer maintained |
Installation
Install with composer
composer require agence-adeliom/easy-common-bundle
Traits
Enum helper
Declaration
use Adeliom\EasyCommonBundle\Helper\Enum; /** * Action enum */ final class Action extends Enum { private const VIEW = 'view'; private const EDIT = 'edit'; }
Usage
$action = Action::VIEW(); // or with a dynamic key: $action = Action::$key(); // or with a dynamic value: $action = Action::from($value); // or $action = new Action($value);
As you can see, static methods are automatically implemented to provide quick access to an enum value.
One advantage over using class constants is to be able to use an enum as a parameter type:
function setAction(Action $action) { // ... }
Documentation
__construct()The constructor checks that the value exist in the enum__toString()You canecho $myValue, it will display the enum value (value of the constant)getValue()Returns the current value of the enumgetKey()Returns the key of the current value on Enumequals()Tests whether enum instances are equal (returnstrueif enum values are equal,falseotherwise)
Static methods:
from()Creates an Enum instance, checking that the value exist in the enumtoArray()method Returns all possible values as an array (constant name in key, constant value in value)keys()Returns the names (keys) of all constants in the Enum classvalues()Returns instances of the Enum class of all Enum constants (constant name in key, Enum instance in value)isValid()Check if tested value is valid on enum setisValidKey()Check if tested key is valid on enum setassertValidValue()Assert the value is valid on enum set, throwing exception otherwisesearch()Return key for searched value
Static methods
final class Action extends Enum { private const VIEW = 'view'; private const EDIT = 'edit'; } // Static method: $action = Action::VIEW(); $action = Action::EDIT();
Static method helpers are implemented using __callStatic().
If you care about IDE autocompletion, you can either implement the static methods yourself:
final class Action extends Enum { private const VIEW = 'view'; /** * @return Action */ public static function VIEW() { return new Action(self::VIEW); } }
or you can use phpdoc (this is supported in PhpStorm for example):
/** * @method static Action VIEW() * @method static Action EDIT() */ final class Action extends Enum { private const VIEW = 'view'; private const EDIT = 'edit'; }
License
Authors
agence-adeliom/easy-common-bundle 适用场景与选型建议
agence-adeliom/easy-common-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 26.03k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2021 年 09 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「enum」 「helper」 「easyadmin」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 agence-adeliom/easy-common-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 agence-adeliom/easy-common-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 agence-adeliom/easy-common-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Enum type behavior for Yii2 based on class constants
The bundle for easy using json-rpc api on your project
A PHP Abstract Enum Class
Datetime helpers for timezone handling
Compatibility layer for emulating enumerations in PHP < 8.1 and native enumerations in PHP >= 8.1
Library with classes to help you do batch.
统计信息
- 总下载量: 26.03k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 6
- 依赖项目数: 14
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-09-23