Download the PHP package whereof/cloud-print without Composer
On this page you can find all versions of the php package whereof/cloud-print. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package cloud-print
云小票机SDK-cloud-print
非官方云小票机SDK,支持飞鹅云,芯烨云,易联云,快递100,映美云,中午云,佳博云,优声云,365智能云打印等
安装
composer require pkg6/cloud-print
请求日志开启
\Pkg6\cloudPrint\Kernel\BaseClient::$request_log=true;
自定义缓存
基于https://packagist.org/packages/psr/simple-cache#1.0
$printer = \Pkg6\cloudPrint\Factory::Feieyun([
'user' => '',
'ukey' => '',
'cache' => [
//必须定义
"class" => \Pkg6\Cache\cache\driver\File::class,
//其他选项
'expire' => 0,
'cache_subdir' => true,
'prefix' => '',
'path' => './cache/',
'hash_type' => 'md5',
'data_compress' => false,
'tag_prefix' => 'tag:',
'serialize' => [],
],
]);
案例
基于中午云的 PHP 接口组件
$printer = \Pkg6\cloudPrint\Factory::Zhongwuyun([
'appid' => '******',
'appsecret' => '******',
])->printer;
基于 优声云 的 PHP 接口组件
$printer = \Pkg6\cloudPrint\Factory::Ushengyun([
'appId' => '10001',
'appSecret' => '**********',
])->printer;
基于佳博云的 PHP 接口组件
$printer = \Pkg6\cloudPrint\Factory::Poscom([
'memberCode' => '',
'apiKey' => '',
])->printer;
基于快递100的 PHP 接口组件
$printer = \Pkg6\cloudPrint\Factory::Kuaidi100([
'key' => '',
'secret' => '',
])->printer;
基于易联云的 PHP 接口组件
$printer = \Pkg6\cloudPrint\Factory::Yilianyun([
'client_id' => '',
'client_secret' => '',
])->printer;
基于映美云的 PHP 接口组件
$printer = \Pkg6\cloudPrint\Factory::Jolimark([
'app_id' => '',
'app_key' => '',
])->printer;
基于 芯烨云 的 PHP 接口组件
$printer = \Pkg6\cloudPrint\Factory::Xpyun([
'user' => '',
'userKey' => '',
])->printer;
基于 飞鹅云 的 PHP 接口组件
$printer = \Pkg6\cloudPrint\Factory::Feieyun([
'user' => '',
'ukey' => '',
])->printer;
支持厂商
加入我们
如果你认可我们的开源项目,有兴趣为 cloud-print 的发展做贡献,竭诚欢迎加入我们一起开发完善。无论是 报告错误issues 或是 Pull Request 开发,那怕是修改一个错别字也是对我们莫大的帮助。
许可协议
All versions of cloud-print with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.4
ext-json Version *
ext-zlib Version *
psr/cache Version ~1.0|^2.0
psr/log Version ^1.0.1 || ^2.0
psr/simple-cache Version ^1.0|^2.0
guzzlehttp/guzzle Version ^6|^7
pimple/pimple Version ^3.0
pkg6/cache Version ^0.1
pkg6/log Version ^0.1
ext-json Version *
ext-zlib Version *
psr/cache Version ~1.0|^2.0
psr/log Version ^1.0.1 || ^2.0
psr/simple-cache Version ^1.0|^2.0
guzzlehttp/guzzle Version ^6|^7
pimple/pimple Version ^3.0
pkg6/cache Version ^0.1
pkg6/log Version ^0.1
The package whereof/cloud-print contains the following files
Loading the files please wait ....