-
-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathservices.php
More file actions
84 lines (70 loc) · 2.5 KB
/
Copy pathservices.php
File metadata and controls
84 lines (70 loc) · 2.5 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Mailgun, Postmark, AWS and more. This file provides the de facto
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
|
*/
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
'scheme' => 'https',
],
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
'anystack' => [
'key' => env('ANYSTACK_API_KEY'),
],
'bifrost' => [
'api_key' => env('BIFROST_API_KEY'),
],
'opencollective' => [
'webhook_secret' => env('OPENCOLLECTIVE_WEBHOOK_SECRET'),
],
'github' => [
'client_id' => env('GITHUB_CLIENT_ID'),
'client_secret' => env('GITHUB_CLIENT_SECRET'),
'redirect' => env('APP_URL').'/auth/github/callback',
'token' => env('GITHUB_TOKEN'),
],
'discord' => [
'client_id' => env('DISCORD_CLIENT_ID'),
'client_secret' => env('DISCORD_CLIENT_SECRET'),
'redirect' => env('APP_URL').'/auth/discord/callback',
'bot_token' => env('DISCORD_BOT_TOKEN'),
'guild_id' => env('DISCORD_GUILD_ID'),
'ultra_role_id' => env('DISCORD_ULTRA_ROLE_ID'),
'early_adopter_role_id' => env('DISCORD_EARLY_ADOPTER_ROLE_ID'),
],
'turnstile' => [
'site_key' => env('TURNSTILE_SITE_KEY'),
'secret_key' => env('TURNSTILE_SECRET_KEY'),
],
'satis' => [
'url' => env('SATIS_API_URL', 'https://plugins.nativephp.com'),
'api_key' => env('SATIS_API_KEY'),
],
'stripe' => [
'course_price_id' => env('STRIPE_COURSE_PRICE_ID'),
'course_price_id_199' => env('STRIPE_COURSE_PRICE_ID_199'),
'course_price_id_299' => env('STRIPE_COURSE_PRICE_ID_299'),
'course_price_increase_at' => '2026-06-15T00:00:00Z',
],
'stripe_connect' => [
'client_id' => env('STRIPE_CONNECT_CLIENT_ID'),
'platform_fee_percent' => 30,
],
];