cinexpert / pubnub

CineXpert PubNub

1.0.3 2023-01-14 21:23 UTC

This package is auto-updated.

Last update: 2024-09-18 22:02:31 UTC


README

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

安装依赖

$ ./composer.phar install

PHP代码风格检查器(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');