server/src/config/services.php
changeset 2 00e2916104fe
parent 1 01a844d292ac
equal deleted inserted replaced
1:01a844d292ac 2:00e2916104fe
     1 <?php
     1 <?php
     2 
     2 
     3 return [
     3 return [
     4 
     4 
     5 	/*
     5     /*
     6 	|--------------------------------------------------------------------------
     6     |--------------------------------------------------------------------------
     7 	| Third Party Services
     7     | Third Party Services
     8 	|--------------------------------------------------------------------------
     8     |--------------------------------------------------------------------------
     9 	|
     9     |
    10 	| This file is for storing the credentials for third party services such
    10     | This file is for storing the credentials for third party services such
    11 	| as Stripe, Mailgun, Mandrill, and others. This file provides a sane
    11     | as Stripe, Mailgun, Mandrill, and others. This file provides a sane
    12 	| default location for this type of information, allowing packages
    12     | default location for this type of information, allowing packages
    13 	| to have a conventional place to find your various credentials.
    13     | to have a conventional place to find your various credentials.
    14 	|
    14     |
    15 	*/
    15     */
    16 
    16 
    17 	'mailgun' => [
    17     'mailgun' => [
    18 		'domain' => '',
    18         'domain' => '',
    19 		'secret' => '',
    19         'secret' => '',
    20 	],
    20     ],
    21 
    21 
    22 	'mandrill' => [
    22     'mandrill' => [
    23 		'secret' => '',
    23         'secret' => '',
    24 	],
    24     ],
    25 
    25 
    26 	'ses' => [
    26     'ses' => [
    27 		'key' => '',
    27         'key' => '',
    28 		'secret' => '',
    28         'secret' => '',
    29 		'region' => 'us-east-1',
    29         'region' => 'us-east-1',
    30 	],
    30     ],
    31 
    31 
    32 	'stripe' => [
    32     'stripe' => [
    33 		'model'  => 'User',
    33         'model' => 'User',
    34 		'secret' => '',
    34         'secret' => '',
    35 	],
    35     ],
    36 
    36 
    37 ];
    37 ];