cblink / verider-sdk
Package description here.
v1.1.2
2020-05-08 02:04 UTC
Requires
- mouyong/foundation-sdk: ^2.0
Requires (Dev)
- mockery/mockery: ^1.3
- phpunit/phpunit: ^8.5
README
.
Installing
$ composer require cblink/verider -vvv
Usage
use Cblink\Verider\Application; $config = [ 'open_user_id' => 'your-client-id', 'open_user_secret' => 'your-client-secret', 'log' => [ 'name' => 'verider', ], 'http' => [ 'timeout' => 3, 'base_uri' => 'http://rcloud.verysum.com:8088', 'http_errors' => false, 'headers' => [ 'content-type' => 'application/json', 'accept' => 'application/json', ], ], 'cache' => [ 'namespace' => 'verider', ], ]; $app = new Application($config); // 绑定软件到账号下 $app->printer->bindMachine($machine_no, $machine_secret); // 获取软件下一站挂载的设备,多个软件用「,」分隔 $app->printer->getPrintersByMachineNo($machine_no); // 创建打印任务 $app->printer->createPrinterTask($device_no, $print_content, $print_id); // 通过设备号获取设备打印状态 $app->printer->getMachineStatusByMachineCode($device_no);
Contributing
You can contribute in one of three ways:
- File bug reports using the issue tracker.
- Answer questions or fix bugs on the issue tracker.
- Contribute new features or update the wiki.
The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.
License
MIT