cinexpert/tools

CineXpert 工具

3.1.0 2024-04-08 18:21 UTC

This package is auto-updated.

Last update: 2024-09-08 19:06:40 UTC


README

CircleCI

此存储库包含队列、加密等工具和服务。每个工具都附带一个适配器模式。

安装依赖项

$ ./composer.phar install

PHPCS

$ vendor/bin/phpcs --standard=phpcs.xml ./src

PHPUnit

$ cd tests && ../vendor/bin/phpunit

基本用法示例

$config = new \Cinexpert\Tools\ToolsConfig();
$config
    ->setAwsRegion('eu-west-1')
    ->setAwsKey('...')
    ->setAwsSecret('...');

$tools = new \Cinexpert\Tools\Tools($config);

$queue = $tools->get('queue');

$queue->sendMessage('https://my-queue-url', 'message text');