leyhmann / docdochelpers
Simple helper for use docdoc.ru partner API
Installs: 46
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 3
Open Issues: 1
pkg:composer/leyhmann/docdochelpers
Requires
- php: ^7.2
- ext-json: *
- kriswallsmith/buzz: ^0.17.2
Requires (Dev)
- phpunit/phpunit: ^6.2|^7.0
README
Official API Documentation Version 1.0.12
Install
Install by composer.
composer require leyhmann/docdochelpers
Example
use Leyhmann\DocDoc\Services\DoctorsService; $client = new Client(DOCDOC_LOGIN, DOCDOC_PASSWORD); $doctorsService = new DoctorsService($client); $doctors = $doctorsService->all($cityId : int, $count: int|null, $start: int|null); foreach($doctors as $doctor) { // do something }