91 lines
2.6 KiB
PHP
91 lines
2.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of Laravel GitHub.
|
|
*
|
|
* (c) Graham Campbell <graham@alt-three.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Connection Name
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify which of the connections below you wish to use as
|
|
| your default connection for all work. Of course, you may use many
|
|
| connections at once using the manager class.
|
|
|
|
|
*/
|
|
|
|
'default' => 'main',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| GitHub Connections
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here are each of the connections setup for your application. Example
|
|
| configuration has been included, but you may add as many connections as
|
|
| you would like. Note that the 5 supported authentication methods are:
|
|
| "application", "jwt", "none", "password", and "token".
|
|
|
|
|
*/
|
|
|
|
'connections' => [
|
|
|
|
'main' => [
|
|
'token' => 'your-token',
|
|
'method' => 'token',
|
|
// 'backoff' => false,
|
|
// 'cache' => false,
|
|
// 'version' => 'v3',
|
|
// 'enterprise' => false,
|
|
],
|
|
|
|
'app' => [
|
|
'clientId' => 'your-client-id',
|
|
'clientSecret' => 'your-client-secret',
|
|
'method' => 'application',
|
|
// 'backoff' => false,
|
|
// 'cache' => false,
|
|
// 'version' => 'v3',
|
|
// 'enterprise' => false,
|
|
],
|
|
|
|
'jwt' => [
|
|
'token' => 'your-jwt-token',
|
|
'method' => 'jwt',
|
|
// 'backoff' => false,
|
|
// 'cache' => false,
|
|
// 'version' => 'v3',
|
|
// 'enterprise' => false,
|
|
],
|
|
|
|
'other' => [
|
|
'username' => 'your-username',
|
|
'password' => 'your-password',
|
|
'method' => 'password',
|
|
// 'backoff' => false,
|
|
// 'cache' => false,
|
|
// 'version' => 'v3',
|
|
// 'enterprise' => false,
|
|
],
|
|
|
|
'none' => [
|
|
'method' => 'none',
|
|
// 'backoff' => false,
|
|
// 'cache' => false,
|
|
// 'version' => 'v3',
|
|
// 'enterprise' => false,
|
|
],
|
|
|
|
],
|
|
|
|
];
|