You are here

protected property Github_HttpClient::$options in Bibliography Module 7.2

The http client options

Type: array

File

modules/CiteProc/Github/HttpClient.php, line 15

Class

Github_HttpClient
Performs requests on GitHub API. API documentation should be self-explanatory.

Code

protected $options = array(
  'protocol' => 'http',
  'url' => ':protocol://github.com/api/v2/:format/:path',
  'format' => 'json',
  'user_agent' => 'php-github-api (http://github.com/ornicar/php-github-api)',
  'http_port' => 80,
  'timeout' => 10,
  'login' => null,
  'token' => null,
);