bolechen / gongmall-php-sdk
工猫(gongmall.com)sdk for php,非官方支持。基于官网文档:https://opendoc.gongmall.com 实现
Installs: 8 916
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: ^7.1|^8.0
- ext-json: *
- ext-openssl: *
- hanson/foundation-sdk: 3.0.*|^4.0.3|^5.0|dev-master
Requires (Dev)
- phpunit/phpunit: ~8.0
This package is auto-updated.
Last update: 2024-11-06 03:59:14 UTC
README
工猫(gongmall.com)官网文档参见:https://opendoc.gongmall.com
- Base on hanson/foundation-sdk
- 仅实现了几个常用功能,如需要增加功能,可以参考 Employee.php 自行扩展,欢迎 PR
Installing
composer require bolechen/gongmall-php-sdk -vvv
Usage
<?php $gongmall = new \Bolechen\Gongmall\Gongmall([ 'apiKey' => '', 'apiSecret' => '', 'contractUrl' => '', //电签网址 'debug' => true, // 调试模式 'sandbox' => true, //沙盒模式 'log' => [ 'name' => 'gongmall', 'file' => __DIR__.'/gongmall.log', 'level' => 'debug', 'permission' => 0777, ] ]); // 电签地址 $result = $gongmall->employee->getContractUrl(['name' => '张三', 'mobile' => 'xxx', 'idNumber' => 'xxx']); // 查询电签结果 $result = $gongmall->employee->getContractStatus($array); // 查询企业当前余额 $result = $gongmall->company->getBalance();
Test
composer test
License
The MIT License (MIT). Please see License File for more information.