alexeyyashin/model-faker
最新稳定版本:v1.0.1
Composer 安装命令:
composer require alexeyyashin/model-faker
包简介
seed-faker based model filler
README 文档
README
A flexible and extensible PHP library for automatically populating object models with dummy data, built on top of seed-faker.
Requirements
- PHP 8.0 or higher
- Composer
Installation
composer require alexeyyashin/model-faker
Usage
See the examples/demo.php file for a complete demonstration:
use AlexeyYashin\ModelFaker\ModelFaker; use DemoModel; $faker = new ModelFaker(); // Configure rules (optional) $faker ->rulePropertyName('name', fn() => 'John Doe') ->ruleMethodName('setCreatedAt', fn() => new \DateTime()) ->ruleAcceptType(\DateTime::class, fn() => new \DateTime()); $model = new DemoModel(); $faker->fillAll($model); var_dump($model);
API Reference
ruleAcceptType(string $type, callable $rule): static— Register a generator for parameter types.ruleMethodName(string $method, callable $rule): static— Register a generator for specific setter methods.rulePropertyName(string $property, callable $rule): static— Register a generator for specific properties.fillExplicitly(object $model, bool $existing = true): int— Fill explicitly named fields and setters.fillSetters(object $model): int— Fill all public setters based on parameter types.fillProperties(object $model): int— Fill all public properties based on type declarations.fillAll(object $model): int— Fill both public properties and methods based on type declarations and parameter types.
统计信息
- 总下载量: 10
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-05-17