yaroslawww/laravel-zvonok-api is a Laravel package for laravel api client for zvonok.com service.
It currently has 0 GitHub stars and 65 downloads on Packagist (latest version 1.0.3).
Install it with composer require yaroslawww/laravel-zvonok-api.
Discover more Laravel packages by yaroslawww
or browse all Laravel packages to compare alternatives.
Last updated
You can install the package via composer:
composer require yaroslawww/laravel-zvonok-api
You can publish and run the migrations with:
You can publish the config file with:
php artisan vendor:publish --provider="GCSC\LaravelZvonokApi\LaravelZvonokApiServiceProvider" --tag="config"
ZvonokApi::request('post', 'phones/append/calls/', [
'multipart' => [
[
'name' => 'campaign_id',
'contents' => '123456789',
],
[
'name' => 'phones',
'contents' => fopen('/path/to/file.csv', 'r'), // just csv data as string
],
],
]
);
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.