drupol/yaroc
Composer 安装命令:
composer require drupol/yaroc
包简介
YAROC: Yet Another Random.Org Client.
关键字:
README 文档
README
YAROC
Yet Another Random.Org Client.
YAROC fully supports V1 and V2 API.
Most of the classes of this library are stateless and immutable.
Requirements
- PHP >= 7.4
- An HTTP Client (see symfony/http-client)
Installation
composer require drupol/yaroc
YAROC needs an HTTP client in order to work, do
composer require symfony/http-client
or provide one.
Usage
First request an API Key or use the temporary key.
The temporary API key used in the examples will be disabled when the beta ends.
You can call any API methods described in the documentation from Random.org.
Currently support all the Random.org API method calls in the basic and signed APIs.
Examples
<?php require 'vendor/autoload.php'; use drupol\Yaroc\Plugin\Provider; use drupol\Yaroc\RandomOrgAPI; $generateIntegers = (new Provider())->withResource('generateIntegers') ->withParameters(['n' => 10, 'min' => 0, 'max' => 100]); $result = (new RandomOrgAPI()) ->withApiKey('00000000-0000-0000-0000-000000000000') ->getData($generateIntegers); print_r($result); $provider = (new Provider())->withResource('generateStrings') ->withParameters([ 'n' => 10, 'length' => 15, 'characters' => implode(array_merge(range('A', 'Z'), range('a', 'z'), range(0, 9))), ]); $result = (new RandomOrgAPI(null, ['apiKey' => '00000000-0000-0000-0000-000000000000']))->getData($provider); print_r($result);
Providing the API key can be accomplished using an environment variable RANDOM_ORG_APIKEY or by using the method proper
parameters in the RandomOrgAPI constructor, or by using (new RandomOrgAPI())->withApiKey(string $apiKey).
Third party libraries integration
ircmaxell/RandomLib integration
YAROC provides a Source for ircmaxell/RandomLib.
<?php require 'vendor/autoload.php'; use drupol\Yaroc\RandomOrgAPI; use drupol\Yaroc\Plugin\RandomLib\Source\RandomOrg; $randomOrgApi = new RandomOrgAPI(); $randomLib = new RandomLib\Factory(); $generator = $randomLib->getGenerator(new SecurityLib\Strength(SecurityLib\Strength::HIGH)) ->addSource(new RandomOrg($randomOrgApi)); $randomString = $generator->generateString(10); echo $randomString;
rchouinard/rych-random integration
YAROC provides a Generator for rchouinard/rych-random.
<?php require 'vendor/autoload.php'; use drupol\Yaroc\RandomOrgAPI; use drupol\Yaroc\Plugin\RychRandom\Generator\RandomOrg; $randomOrgApi = new RandomOrgAPI(); $rychRandom = new Rych\Random\Random(new RandomOrg($randomOrgApi)); $randomString = $rychRandom->getRandomString(8); echo $randomString;
History
I discovered the Random.Org the 22 November 2016, by chance and I found the idea amazing.
I had the idea to build a library that would be following the best development practice and up to date.
Feel free to contact me at: pol.dellaiera@protonmail.com
Code quality, tests and benchmarks
To run the tests, run this command:
RANDOM_ORG_APIKEY=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx composer grumphp
Every time changes are introduced into the library, Travis CI run the tests and the benchmarks.
The library has tests written with PHPSpec.
Feel free to check them out in the spec directory. Run composer phpspec to trigger the tests.
Before each commit some inspections are executed with GrumPHP, run ./vendor/bin/grumphp run to check manually.
PHPInfection is used to ensure that your code is properly tested, run composer infection to test your code.
Contributing
Feel free to contribute by sending Github pull requests. I'm quite reactive :-)
If you can't contribute to the code, you can also sponsor me on Github or Paypal.
Changelog
See CHANGELOG.md for a changelog based on git commits.
drupol/yaroc 适用场景与选型建议
drupol/yaroc 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 917 次下载、GitHub Stars 达 7, 最近一次更新时间为 2016 年 11 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「client」 「random」 「random.org」 「RNG」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 drupol/yaroc 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 drupol/yaroc 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 drupol/yaroc 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Mock PSR-18 HTTP client
PHP class and Laravel implementation for Random.org
Faker Japanese is a Faker provider that generates fake Japanese related data for you.
Gambling Algorithms for Certification.
Asynchronous MQTT client built on React
Reusable utilities library for Lacus Solutions' packages (type description, HTML escaping, random sequences)
统计信息
- 总下载量: 917
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-11-22