firstphp/ikcrm

爱客CRM组件开发for hyperf

Installs: 17

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/firstphp/ikcrm

2.1.1 2019-10-08 05:02 UTC

This package is not auto-updated.

Last update: 2025-10-01 17:24:34 UTC


README

爱客CRM开发组件

安装组件:

composer require firstphp/ikcrm

发布配置:

php bin/hyperf.php vendor:publish firstphp/ikcrm

编辑.env配置:

IKCRM_URL=https://dingtalk.e.ikcrm.com/
IKCRM_USERNAME=150xxxxxxxx
IKCRM_PASSWORD=123456

示例代码:

use Firstphp\Ikcrm\IkcrmInterface;

......

/**
 * @Inject
 * @var IkcrmInterface
 */
protected $ikcrmInterface;

public function test() {
    $res = $this->ikcrmInterface->userInfo();
    var_dump($res);
}