![]() 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/ts.corals.io/corals-api/Corals/core/Foundation/config/ |
<?php return [ 'api_version' => env('CORALS_API_VERSION', 'v1'), 'cache_ttl' => env('DEFAULT_CACHE_TTL', '1440'), 'slack' => [ 'exception_channels' => array_filter(explode(',', env('SLACK_EXCEPTION_CHANNELS'))), ], 'query_builder_enabled' => env('QUERY_BUILDER_FILTER_ENABLED', false), 'query_builder_condition_types' => [ 'text' => [ 'equal', 'not_equal', 'begins_with', 'not_begins_with', 'contains', 'not_contains', 'ends_with', 'not_ends_with', 'is_empty', 'is_not_empty', 'is_null', 'is_not_null' ], 'date' => [ 'equal', 'not_equal', 'is_null', 'is_not_null', 'less', 'less_or_equal', 'greater', 'greater_or_equal', 'between', 'not_between', ], 'boolean' => [ 'equal', 'is_null', 'is_not_null' ], 'select' => [ 'equal', 'is_null', 'is_not_null', 'in', 'not_in' ] ], 'csv_delimiter' => env('CSV_DELIMITER', ','), ];