trismegiste/rpg-name-generator
Composer 安装命令:
composer require trismegiste/rpg-name-generator
包简介
Library for generating random names (for table-top roleplaying games)
README 文档
README
The RPG character name generator library is designed to create list of random names used for table-top role-playing games.
This library was extracted from the website PHP-Character-Name-Generator from Mark Tasaka after a heavy overhaul and with the help of nikic/PHP-Parser (by the way, this tool is awesome)
This library is fully tested with PhpUnit, 100% code coverage.
Install
With Composer :
composer require trismegiste/rpg-name-generator
Usage
See phpunit tests for how to use this library :
$repo = new FileRepository(); print_r($repo->getSurnameListFor('japanese')); print_r($repo->getGivenNameListFor('female', 'japanese'));
RandomizerDecorator class is a decorator for adding randomizing capabilities :
$repo = new RandomizerDecorator(new FileRepository()); print_r($repo->getSurnameListFor('random')); // gets the list of surnames from a random language echo $repo->getRandomGivenNameFor('female', 'chinese'); // picks one random chinese female given name echo $repo->getRandomSurnameFor('french'); // picks one random french surname echo $repo->getRandomSurnameFor('random'); // picks one random surname from a random language (full random)
Test
With PhpUnit :
vendor/bin/phpunit
Code coverage
With phpdbg :
phpdbg -qrr vendor/bin/phpunit firefox doc/coverage/index.html
trismegiste/rpg-name-generator 适用场景与选型建议
trismegiste/rpg-name-generator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 263 次下载、GitHub Stars 达 3, 最近一次更新时间为 2021 年 11 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 trismegiste/rpg-name-generator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 trismegiste/rpg-name-generator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 263
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 23
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-11-25