Provides information about a GitHub Enterprise installation. Wraps GitHub Enterprise API.
In order to configure the client to point to a GitHub Enterprise installation, do the following:
<?php
// This file is generated by Composer
require_once 'vendor/autoload.php';
$client = new \Github\Client();
// Set the URL of your GitHub Enterprise installation
$client->setEnterpriseUrl('https://ghe.host');
// Use the client as you would ordinarily
$repositories = $client->api('user')->repositories('ornicar');
The Admin Stats, License, and User Administration API endpoints are only accessible to GitHub Enterprise site administrators. The Management Console API endpoints are only accessible via the Management Console password.
Requires authentication.
$client->api('enterprise')->userAdmin()->suspend('ornicar');
Requires authentication.
$client->api('enterprise')->userAdmin()->unsuspend('ornicar');