From cabde35a689bfed0517666924082ec24b4b86c9d Mon Sep 17 00:00:00 2001 From: Sergio Brighenti Date: Tue, 20 Aug 2019 23:00:33 +0200 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 90cf101..e4c39cd 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,12 @@ You must set the `base_url`, or remove it for get dynamically the url from reque ```php return [ 'base_url' => 'https://example.com', // no trailing slash - 'storage_dir' => 'storage', + 'storage' => [ + 'driver' => 'local', + 'path' => 'storage', + ], 'db' => [ - 'connection' => 'sqlite', + 'connection' => 'sqlite', // current support for sqlite and mysql 'dsn' => 'resources/database/xbackbone.db', 'username' => null, // username and password not needed for sqlite 'password' => null,