techknowlogick / php-conduit
This package is abandoned and no longer maintained.
No replacement package was suggested.
SDK for Phabricator's Conduit API
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
SDK for Phabricator's Conduit API.
Implemented API Calls
- maniphest
- query
- info
- update
- user
- query
Install
$ php composer.phar require techknowlogick/php-conduit
Basic usage
<?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") ));
Notes
- This library is based on the php-phabricator-api library