fabianoroo/

trafegus

1.0.16 2021-10-01 17:44 UTC

README

用于从版本 44 开始与 Trafegus 系统API REST集成的库。

使用该库
composer require fabianoroo/trafegus:1.0.*

示例

终端注册

<?php
require_once( './../vendor/autoload.php');

$host = 'HOST_API_TRAFEGUS';
$auth = 'user:password';

$terminal = new \Trafegus44\Terminal($host, $auth);
$terminal->setIdentificador('A465DF897ADF6A5')
->setTecnologia('4574');

$retorno = $terminal->create();

print_r(json_encode($retorno->response));