%PDF- %GIF98; %PNG;
 
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/config/  | 
Upload File :  | 
<?php
// Updates folder
$product = 'worksuite-new';
// Envato id
$envato_item_id = 20052522;
// Product Url from codecanyon
$productUrl = 'https://1.envato.market/worksuite';
$updatesDomain = 'https://froiden-updates.s3.ap-south-1.amazonaws.com';
$verifyDomain = 'https://envato.froid.works';
return [
    /*
     * Model name of where purchase code is stored
     */
    'setting' => \App\Models\GlobalSetting::class,
    /*
     * Add redirect route here route('login') will be used
     */
    'redirectRoute' => 'login',
    'envato_item_id' => $envato_item_id,
    'envato_product_name' => $product,
    'envato_product_url' => $productUrl,
    'plugins_url' => $verifyDomain . '/plugins/' . $envato_item_id,
    /*
    * Temp folder to store update before to install it.
    */
    'tmp_path' => storage_path() . '/app',
    /*
    * URL where your updates are stored ( e.g. for a folder named 'updates', under http://site.com/yourapp ).
    */
    'update_baseurl' => $updatesDomain . '/' . $product,
    /*
    * URL to verify your purchase code
    */
    'verify_url' => $verifyDomain . '/verify-purchase',
    /*
     * Update log file
     */
    'updater_file_path' => $updatesDomain . '/' . $product . '/laraupdater.json',
    /*
    * Set a middleware for the route: updater.update
    * Only 'auth' NOT works (manage security using 'allow_users_id' configuration)
    */
    'middleware' => ['web', 'auth'],
    /*
    * Set which users can perform an update;
    * This parameter accepts: ARRAY(user_id) ,or FALSE => for example: [1]  OR  [1,3,0]  OR  false
    * Generally, ADMIN have user_id=1; set FALSE to disable this check (not recommended)
    */
    'allow_users_id' => false,
    /*
     * Change Log URL
     */
    'versionLog' => $verifyDomain . '/version-log/' . $product,
    'xss_ignore_index' => [
        'description',
        'summery',
        'note',
        'notes',
        'project_summary',
        'reply_heading',
        'comment',
        'message',
        'details',
    ],
];