planiverse

A minimalist, no-JS front-end for Mastodon.
git clone https://git.stjo.hn/planiverse
Log | Files | Refs | README | LICENSE

services.php (1294B)


      1 <?php
      2 
      3 return [
      4 
      5     /*
      6     |--------------------------------------------------------------------------
      7     | Third Party Services
      8     |--------------------------------------------------------------------------
      9     |
     10     | This file is for storing the credentials for third party services such
     11     | as Stripe, Mailgun, SparkPost and others. This file provides a sane
     12     | default location for this type of information, allowing packages
     13     | to have a conventional place to find your various credentials.
     14     |
     15     */
     16 
     17     'mailgun' => [
     18         'domain' => env('MAILGUN_DOMAIN'),
     19         'secret' => env('MAILGUN_SECRET'),
     20     ],
     21 
     22     'ses' => [
     23         'key' => env('SES_KEY'),
     24         'secret' => env('SES_SECRET'),
     25         'region' => 'us-east-1',
     26     ],
     27 
     28     'sparkpost' => [
     29         'secret' => env('SPARKPOST_SECRET'),
     30     ],
     31 
     32     'stripe' => [
     33         'model' => App\User::class,
     34         'key' => env('STRIPE_KEY'),
     35         'secret' => env('STRIPE_SECRET'),
     36     ],
     37 
     38     'mastodon' => [
     39         'domain'        => env('MASTODON_DOMAIN'),
     40         'client_id'     => env('MASTODON_ID'),
     41         'client_secret' => env('MASTODON_SECRET'),
     42         'redirect'      => env('MASTODON_REDIRECT'),
     43         //'read', 'write', 'follow'
     44 	'scopes'        => ['read', 'write', 'follow'],
     45     ],
     46 ];