codewiser/casts
Composer 安装命令:
composer require codewiser/casts
包简介
A set of casts for Laravel
README 文档
README
Structures
Structure is an array or json attribute cast to an object.
For example:
use Illuminate\Database\Eloquent\Relations\Pivot; use Illuminate\Database\Eloquent\Casts\AsStringable; use Illuminate\Support\Stringable; /** * @property null|Stringable $first_name * @property null|Stringable $second_name * @property null|Stringable $family_name */ class Username extends Pivot { protected function casts(): array { return [ 'first_name' => AsStringable::class, 'second_name' => AsStringable::class, 'family_name' => AsStringable::class, ]; } }
Note, that it is not a real Model. We use Pivot as it has no key and has attributes, casts etc. We will never save it. We use it just as structure interface.
Apply Username struct to User model:
use Codewiser\Casts\AsStruct; use Illuminate\Database\Eloquent\Model; /** * @property null|Username $name */ class User extends Model { protected function casts(): array { return [ 'name' => AsStruct::using(Username::class)->nullable() ]; } }
Now, the IDE you are using may suggest structure attributes:
$user->name->first_name;
You can make it non-nullable. It means that name attribute will always be an
object, even if empty.
use Codewiser\Casts\AsStruct; use Illuminate\Database\Eloquent\Model; /** * @property Username $name */ class User extends Model { protected function casts(): array { return [ 'name' => AsStruct::using(Username::class)->required() ]; } }
Structures may be nested.
Structure collections
The same way you may cast collections of custom structs:
use Codewiser\Casts\AsStruct; use Illuminate\Support\Collection; /** * @property null|ContactCollection<int,Contact> $contacts_1 * @property null|Collection<int,Contact> $contacts_2 * @property Collection<int,Contact> $contacts_3 */ class User extends Model { protected function casts(): array { return [ 'contacts_1' => AsStruct::collects(Contact::class, ContactCollection::class)->nullable(), 'contacts_2' => AsStruct::collects(Contact::class)->nullable(), 'contacts_3' => AsStruct::collects(Contact::class)->required(), ]; } }
Date-time with timezone
Laravel doesn't respect timezone.
Cast \Codewiser\Casts\AsDatetimeWithTZ fixes this behaviour.
Before
class Article extends \Illuminate\Database\Eloquent\Model { protected $casts = [ 'date' => 'datetime' ]; }
// e.g. Laravel has Europe/London (+01:00) timezone config()->set('app.timezone', 'Europe/London'); $model = new Article(); $model->date = '2000-01-01T10:00:00+02:00'; echo $model->date->format('c'); // Expecting 2000-01-01T09:00:00+01:00 // Actual 2000-01-01T10:00:00+01:00
After
class Article extends \Illuminate\Database\Eloquent\Model { protected $casts = [ 'date' => \Codewiser\Casts\AsDatetimeWithTZ::class ]; }
// e.g. Laravel has Europe/London (+01:00) timezone config()->set('app.timezone', 'Europe/London'); $model = new Article(); $model->date = '2000-01-01T10:00:00+02:00'; echo $model->date->format('c'); // Expecting 2000-01-01T09:00:00+01:00 // Actual 2000-01-01T09:00:00+01:00
Request morph validator
Before
use Illuminate\Database\Eloquent\Relations\Relation; class MyRequest extends FormRequest { public function rules(): array { return [ 'commentable_type' => 'required|string', 'commentable_id' => 'required', ]; } public function getCommentable(): Model { $class = Relation::getMorphedModel($this->input('commentable_type')); return $class::find($this->integer('commentable_id')); } }
After
use Codewiser\Requests\HasMorphs; use Illuminate\Database\Eloquent\Relations\Relation; class MyRequest extends FormRequest { use HasMorphs; public function rules(): array { return [ ...$this->morph('commentable') ]; } public function getCommentable(): Model { return $this->morphed('commentable'); } }
Additionally, you may pass list of classes, the morphed model could be.
use Codewiser\Requests\HasMorphs; use Illuminate\Database\Eloquent\Relations\Relation; class MyRequest extends FormRequest { use HasMorphs; public function rules(): array { return [ ...$this->nullableMorph('commentable', [Post::class, Article::class]) ]; } public function hasCommentable(): bool { return $this->hasMorph('commentable'); } public function getCommentable(): ?Model { return $this->morphed('commentable'); } }
codewiser/casts 适用场景与选型建议
codewiser/casts 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 484 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 02 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 codewiser/casts 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 codewiser/casts 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 484
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 2
其他信息
- 授权协议: MIT
- 更新时间: 2025-02-28