dev-master
9999999-dev https://github.com/sethington/php-phabricator-apiPHP wrapp for Phabricator's Conduit API
MIT
The Requires
- php >=5.3.2
- ext-curl *
by Seth Steele
api phabricator conduit
Wallogit.com
2017 © Pedro Peláez
PHP wrapp for Phabricator's Conduit API
Just getting started, not much functionality implemented yet., (*1)
Uses Phabricator Conduit API., (*2)
Everything
Download composer:, (*3)
$ curl -s http://getcomposer.org/installer | php
Then create a composer.json file in the root of your project:, (*4)
{
"require": {
"sethington/php-phabricator-api": "*"
}
}
... and install your dependencies using:, (*5)
$ php composer.phar install
php-phabricator-api client<?php
// This file is generated by Composer
require_once 'vendor/autoload.php';
$client = new Phabricator\Client('https://secure.phabricator.com', 'AUTH_USER', 'AUTH_CERTIFICATE');
$diffs = $client->api("diffs")->query(array(
"limit" => 5 // retrieve last 5 differentials in phabricator
));
PHP wrapp for Phabricator's Conduit API
MIT
api phabricator conduit