hith/laravel-codeable
Composer 安装命令:
composer require hith/laravel-codeable
包简介
A lightweight Eloquent trait for generating, storing, expiring, and managing numeric codes (OTPs, tokens) on any model.
README 文档
README
Laravel Codeable
Laravel Codeable focuses on Code generation for models such as OTPs.
Supported Laravel versions
| Laravel Version | Codeable Version |
|---|---|
| 12.x | 1.0+ |
Getting Started
Requires:
1: Use Composer to install laravel-codeable into your project:
composer require "hith/laravel-codeable"
2: Then, publish files:
php artisan vendor:publish --tag=codeable-migrations php artisan vendor:publish --tag=codeable-command php artisan vendor:publish --tag=codeable-config
For simplicity, you can publish all files at once:
php artisan vendor:publish --tag=codeable-files
3: Finally, use the package:
- By adding the trait directly to your models.
- By using the Codeable class.
- By using the Coder Facade.
Usage of HasCodes Trait:
In Model:
use Codeable\Traits\HasCodes; class User extends Model { use HasCodes; }
Then:
$user->createCode(); $code = $user->createCode(type:'code_type', length:6, timeToExpire:'15:m'); // or define the attributes you want $user->deleteCode($code); // delete by passing a Code model instance $user->deleteCode('code_type'); // delete by code type $user->deleteCode($code->id); // delete by code id
Usage of Codeable Class:
use Codeable\Codeable; $codeable = new Codeable(); $codeable->createCode(); $code = $codeable->createCode(type:'code_type', length:6, timeToExpire:'15:m'); $codeable->deleteCode($code); $codeable->deleteCode('code_type');
Usage of Coder Facade:
use Codeable\Facades\Coder; $code = Coder::createCode(); if(! $code->isValid()){ Coder::delete($code); } $code = Coder::codeByType('code_type'); if($code->isExpired()){ Coder::delete($code); }
Useful Methods
These methods let you easily retrieve codes. They can be used with the Model trait, the Codeable class, or the Coder Facade.
// Get a code by type or by code value $user->code('code_type'); $user->code(12345); // Or use explicit methods $user->codeByType('code_type'); $user->codeByCode(12345); // Or fetch it by ID $user->codeById($code->id);
Codeable: Delete Expired Command
This command removes all expired codes from the database.
Usage
Run the following in your terminal:
php artisan codes:delete-expired
Codeable Configuration
You can alter the behavior using the Codeable config file.
/** * min_length : int * The minimum number of digits allowed in a generated code. * */ 'min_length' => 3, /** * max_length : int * The maximum number of digits allowed in a generated code. * */ 'max_length' => 16, /** * max_attempts : int * The maximum number of attempts to generate a unique code before failing. * Example: 5 → after 5 unsuccessful tries, any code will be returned. * */ 'max_attempts' => 1, /** * valid_units : string[] * Allowed time units for setting the `expire_at` field in the database record. */ 'valid_units' => [ 's' => 'second', 'm' => 'minute', 'h' => 'hour', 'd' => 'day', ]
Contributing
Thank you for considering contributing to Laravel Codeable. All the contribution guidelines are mentioned here.
License
Laravel Codeable is an open-sourced software licensed under the MIT license.
hith/laravel-codeable 适用场景与选型建议
hith/laravel-codeable 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 11 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「otp」 「eloquent」 「codes」 「tokens」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 hith/laravel-codeable 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hith/laravel-codeable 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 hith/laravel-codeable 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Laravel Eloquent model trait for translatable resource
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Help to manage meta data on Laravel Eloquent model
A package to cast json fields, each sub-keys is castable
OTP generating package
OTP generating package
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-11-27