From 522f5826e7fbb60b994d5995a546b21b9ef5cdcf Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Mon, 4 Nov 2019 22:08:06 -0700 Subject: [PATCH] Updated config files --- app/config/app.php | 48 +++++++++++++++++++++++++++++++++++++++----- app/config/cache.php | 7 ++++++- 2 files changed, 49 insertions(+), 6 deletions(-) diff --git a/app/config/app.php b/app/config/app.php index f1376da..3838ad4 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -1,18 +1,56 @@ '.', + + /** + * Whether or not to list folders before regular files. + * + * Possible values: true, false + * Default value: true + */ 'list_folders_first' => true, - 'list_sort_order' => 'natcasesort', + /** + * Sorting order of files. + * + * Possible values: foo, bar, baz + * Default value: natcasesort + */ + 'sort_order' => 'natcasesort', + /** + * Name of the theme to use for styling the application. + * + * Default value: default + */ 'theme' => 'default', + /** + * Description here... + * + * Default value: 'Y-m-d H:i:s' + */ 'date_format' => 'Y-m-d H:i:s', + /** + * Description here... + * + * Default value: [] + */ 'hidden_files' => [ - 'some.file', // Files - 'some_dir', // Directories - '**/.ht*', // Globs - '/^.ht*$/', // Regular expressions + // ... ], + + /** + * Hide version control system files (e.g. .git directories) from listing. + * + * Default value: true + */ + 'ignore_vcs_files' => true, ]; diff --git a/app/config/cache.php b/app/config/cache.php index 93c4e95..eede807 100644 --- a/app/config/cache.php +++ b/app/config/cache.php @@ -1,5 +1,10 @@ env('VIEW_CACHE', 'app/cache/views'), ];