otis / vetmanager-api
Package for work with vetmanager api
This package's canonical repository appears to be gone and the package has been frozen as a result.
1.0.12
2020-07-13 17:52 UTC
Requires
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
- otis22/php-coverage-checker: ^1.2
- php-coveralls/php-coveralls: ^2.2
- phpstan/phpstan: ^0.12.19
- phpunit/phpunit: ^8.1 || ^9.1
- sensiolabs/security-checker: ^6.0
- squizlabs/php_codesniffer: 3.*
- wapmorgan/php-code-fixer: ^2.0
README
vetmanager-api
Library for work with Vetmanager REST API. Now url address has format $domain.vetmanager.ru for example: myclinic76.vetmanager.ru But this url format can changes in future.
If you want stable application for Vetmanager REST API, please use this library
How to use
Install
composer require otis/vetmanager-api:@dev
Basic usage Url
use function Otis22\VetmanagerApi\url;
echo url('myclinic') . "\n";
Where 'myclinic' is first part from your clinic url. $domain.vetmanager.ru
Basic Usage Token
use function Otis22\VetmanagerApi\url;
use function Otis22\VetmanagerApi\credentials;
use function Otis22\VetmanagerApi\token;
$credentials = credentials('login', 'password', 'app_name');
$url = url('myclinic');
echo token($credentials, $url) . "\n";
Where:
- 'myclinic' - first part from your clinic url. $domain.vetmanager.ru
- 'login' - user login
- 'password' - user password
- 'app_name' - name application will use this token
Contributing
Run docker container
cd docker
docker-compose up
now you can connect to terminal
docker exec -it vetmanager-api /bin/bash
Run tests
#validate composer json
composer check-composer
#static analyzes and codestyle
composer static
#run unit tests
composer unit-tests
#run all tests
composer all-tests