| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 | <?php
return [
    /*
    |--------------------------------------------------------------------------
    | Version
    |--------------------------------------------------------------------------
    |
    | The desired Antlers language version to utilize. Supported values are
    | "runtime" for the modern parser, or "regex" for the legacy parser.
    |
    */
    'version' => 'runtime',
    /*
    |--------------------------------------------------------------------------
    | Debugbar
    |--------------------------------------------------------------------------
    |
    | Defaults to true. Set to false to disable antlers template profiling in
    | the Laravel Debugbar package (when enabled).
    |
    */
    
    'debugbar' => env('STATAMIC_ANTLERS_DEBUGBAR', true),
    /*
    |--------------------------------------------------------------------------
    | Guarded Variables
    |--------------------------------------------------------------------------
    |
    | Any variable pattern that appears in this list will not be allowed
    | in any Antlers template, including any user-supplied values.
    |
    */
    'guardedVariables' => [
        'config.app.key',
    ],
    /*
    |--------------------------------------------------------------------------
    | Guarded Tags
    |--------------------------------------------------------------------------
    |
    | Any tag pattern that appears in this list will not be allowed
    | in any Antlers template, including any user-supplied values.
    |
    */
    'guardedTags' => [
    ],
    /*
    |--------------------------------------------------------------------------
    | Guarded Modifiers
    |--------------------------------------------------------------------------
    |
    | Any modifier pattern that appears in this list will not be allowed
    | in any Antlers template, including any user-supplied values.
    |
    */
    'guardedModifiers' => [
    ],
];
 |