forked from zendframework/modules.zendframework.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.local.php.dist
More file actions
34 lines (33 loc) · 775 Bytes
/
github.local.php.dist
File metadata and controls
34 lines (33 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* ScnSocialAuth Configuration
*
* If you have a ./config/autoload/ directory set up for your project, you can
* drop this config file in it and change the values as you wish.
*/
$settings = [
/**
* Github Client id
*
* Please specify the client id provided by github
*
* You can register a new application at:
* https://github.com/settings/applications/new
*/
'github_client_id' => '',
/**
* Github Secret
*
* Please specify the secret provided by github
*
* You can register a new application at:
* https://github.com/settings/applications/new
*/
'github_secret' => '',
];
/**
* You do not need to edit below this line
*/
return [
'scn-social-auth' => $settings,
];