denostr / yii2-binotel
Клиент API Binotel для Yii2
Installs: 1 239
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.4.0
- denostr/binotel-api: *
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-10-27 05:36:18 UTC
README
Установка
Рекомендуется установка через composer:
$ composer require denostr/yii2-binotel:"~0.1.0"
или добавить
"denostr/yii2-binotel": "~0.1.0"
в файл composer.json
Подключение
Подключение компонента в конфиг проекта:
'components' => [
...
'binotel' => [
'class' => 'denostr\Binotel\yii\Client',
'key' => 'MY_KEY',
'secret' => 'MY_SECRET',
],
],
Использование
try {
$binotel = Yii::$app->binotel;
$voiceFiles = $binotel->settings->listOfVoiceFiles();
print_r($voiceFiles);
} catch (\denostr\Binotel\Exception $e) {
printf('Error (%d): %s' . PHP_EOL, $e->getCode(), $e->getMessage());
}
Документацию можно найти по ссылке