shiftechafrica/shift-code-generator
Composer 安装命令:
composer require shiftechafrica/shift-code-generator
包简介
This package generates code in relation to year, date and month. For instance, it uses A - Z letters for months.
README 文档
README
🚀 Introduction
Shift Code Generator is a lightweight Laravel/PHP package that generates unique alphanumeric codes based on the year, month, and day, followed by a randomized string.
It’s ideal for applications that require sequential or time-based identifiers — such as transaction IDs, invoice numbers, or reference codes.
For example:
1E1NKJDQVW
- 1 → Represents the number of years since the start year
- E → Represents the month (A–Z mapping)
- 1 → Represents the day of the month
- NKJDQVW → Randomly generated string
This logic mimics the behavior of M-Pesa transaction IDs, ensuring unique, traceable, and time-bound identifiers.
⚙️ Installation
Install via Composer:
composer require shiftechafrica/shift-code-generator
Update to the latest version:
composer update shiftechafrica/shift-code-generator --lock
If the package isn’t automatically discovered, run:
composer dump-autoload
Publish the configuration file:
php artisan vendor:publish --provider="ShiftechAfrica\CodeGenerator\ShiftCodeGeneratorServiceProvider"
This will create a config file at:
config/shift-code-generator.php
⚙️ Configuration
In your .env file, add the following:
YEAR_OF_START=2020 # The year your application was launched USE_DATABASE=false # Set to true to use database tracking, or false to use static year configuration
If you enable database tracking, seed the database by adding this entry to your DatabaseSeeder:
/** * Seed the application's database. * * @return void */ public function run() { // Other seeds... $this->call(\ShiftechAfrica\CodeGenerator\Seeds\ShiftCodeGeneratorFactory::class); }
This ensures your application initializes with proper baseline data for generating codes dynamically.
🧩 Usage
Generate unique codes easily within your application.
use ShiftechAfrica\CodeGenerator\ShiftCodeGenerator; /** * Generate a new Shift Code * * @return string */ public function generateCode() { return (new ShiftCodeGenerator())->generate(); // Optionally pass an integer to set the random length, e.g. ->generate(5) }
Example Output
1E1NKJDQVW
- 1 = Year offset
- E = Month letter
- 1 = Day
- NKJDQVW = Random string
🧭 Version Guidance
| Version | Status | Packagist | Namespace | Release |
|---|---|---|---|---|
| 1.x | ✅ Latest | shiftechafrica/shift-code-generator |
ShiftechAfrica\CodeGenerator |
v1.5.2 |
🛡️ Security Vulnerabilities
If you discover a security vulnerability, please contact:
📧 Bugs
📄 License
This package is open-source software licensed under the
MIT License
shiftechafrica/shift-code-generator 适用场景与选型建议
shiftechafrica/shift-code-generator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.57k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2020 年 05 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「code-generator」 「mpesa」 「mpesa-like-code」 「transactionId」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 shiftechafrica/shift-code-generator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 shiftechafrica/shift-code-generator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 shiftechafrica/shift-code-generator 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Beyonic PHP Library
MVC code generator for Codeigniter 3.
Code generator for OpenAPI or Swagger specification files
Bootstrap 4 templates for the excellent code Generator from CrestApps
Base Skeleton for Laravel Application
User interface to help developpers with laravel-code-generator commands
统计信息
- 总下载量: 2.57k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 31
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-05-01