techknowlogick / php-conduit
此包已被放弃,不再维护。未建议替代包。
Phabricator Conduit API 的 SDK
v0.0.1
2016-04-05 00:46 UTC
Requires
- php: >=5.4.0
- lib-curl: *
This package is not auto-updated.
Last update: 2020-01-24 16:43:54 UTC
README
Phabricator Conduit API 的 SDK。
实现的 API 调用
- maniphest
- query
- info
- update
- user
- query
安装
$ php composer.phar require techknowlogick/php-conduit
基本用法
<?php require_once 'vendor/autoload.php'; $client = new \Techknowlogick\Phabricator\Client('https://secure.phabricator.com', 'PHAB_TOKEN'); $user = $client->api("user")->query(array( "emails" => array("john.doe@exapmle.com") ));
注意
- 此库基于 php-phabricator-api 库