otis22/vetmanager-token

Project for using token auth for Vetmanager Rest API

0.2.2 2021-02-22 18:30 UTC

This package is auto-updated.

Last update: 2024-10-31 00:23:26 UTC


README

GitHub CI Coverage Status

vetmanager-token

Vetmanager - CRM for veterinary with REST API. vetmanager-token is library for work with token auth in Vetmanager API.

Vetmanager REST API Docs

Vetmanager REST API in Postman

How to use

use function Otis22\VetmanagerToken\credentials;
use function Otis22\VetmanagerToken\token;

$credentials = credentials('login', 'password', 'app_name');
$domainName = 'myclinic'; // first part from programm url address
echo token($credentials, $domainName)->asString();

Contributing

For run all tests

make all

or connect to terminal

make exec

Dafault php version is 8.0. Use PHP_VERSION= for using custom version. Project works only with 8.0 and 8.1 version.

make all PHP_VERSION=8.1
# run both 
make all PHP_VERSION=8.1 && make all

For integration tests copy .env.example to .env and fill with yours values

all commands

# security check
make security
# composer install
make install
# composer install with --no-dev
make install-no-dev
# check code style
make style
# run static analyze tools
make static-analyze
# run unit tests
make unit
#  check coverage
make coverage
# check integration, .env required
make integration