Devin Smith 41e8600690 more deployment changes
partial #3787
added support for deployment to any repo path.
added tagging system
2014-11-18 16:08:23 -08:00

20 lines
434 B
PHP
Executable File

<?php
namespace Github\Api\Enterprise;
use Github\Api\AbstractApi;
class License extends AbstractApi
{
/**
* Provides information about your Enterprise license (only available to site admins).
* @link https://developer.github.com/v3/enterprise/license/
*
* @return array array of license information
*/
public function show()
{
return $this->get('enterprise/settings/license');
}
}