定制 thesnackalicious/combinewords 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

thesnackalicious/combinewords

Composer 安装命令:

composer require thesnackalicious/combinewords

包简介

Combine words from word lists into strings in Laravel 5.

README 文档

README

Combine words from word lists into strings in Laravel 5.

combinewords is a package for Laravel 5 that provides functionality to combine random words selected from loaded lists to generate a string.

Installation

Add thesnackalicious/combinewords to your composer.json file:

"require": {
  "thesnackalicious/combinewords": "1.*"
}

Use composer to install this package.

$ composer update

Register the Service Provider and Facade

After updating composer add the service provider to the providers array in your config/app.php file:

TheSnackalicious\CombineWords\Providers\CombineWordsServiceProvider::class

Add the facade to the aliases array in your config/app.php file:

'CombineWords' => TheSnackalicious\CombineWords\Facades\CombineWords::class

Publish the configuration file

If you want to use an alternative configuration, you can publish the combinewords.php configuration file:

$ php artisan vendor:publish

How it works

combinewords generates strings by choosing random words based on the supplied format string. For each word holder in the format string, combinewords will choose a random word to replace it from the corresponding .json file. For example:

$ php artisan tinker
>>> CombineWords::make('{color}{noun}');
=> "blackwood"

In this example combinewords chooses one random word from the color.json file and one random word from the noun.json file to create the blackwood string.

combinewords will look for word list files in the directory specified by the value in the combinewords.directory configuration key. combinewords comes with two word lists included: color.json and noun.json.

Adding Requirements

combinewords allows you to specify requirements that the generated string must meet:

$ php artisan tinker
>>> CombineWords::requirement(new MinimumLengthRequirement(5))->make('{color}{noun}');
=> "orangefather"
>>> CombineWords::requirements([new MaximumLengthRequirement(10), function($s) { return strpos($s, 'pink') === 0; }])->make('{color}{noun}');
=> "pinktree"

The maximum number of attempts that combinewords will perform is specified by the value in the combinewords.max_attempts configuration key. This value can also be passed in as the second parameter to the make function.

Note that the requirements stored on the generator are cleared after every call to the make function. If you want to preserve the requirements for the next make function call you should pass true as the third parameter of the make function.

thesnackalicious/combinewords 适用场景与选型建议

thesnackalicious/combinewords 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 227 次下载、GitHub Stars 达 1, 最近一次更新时间为 2015 年 06 月 20 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「string」 「laravel」 「manipulation」 「words」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 thesnackalicious/combinewords 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 thesnackalicious/combinewords 我们能提供哪些服务?
定制开发 / 二次开发

基于 thesnackalicious/combinewords 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 227
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 22
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-06-20