From ac8887129c0cb2308a8484684e6731db2866dd36 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Mon, 27 Oct 2014 17:33:45 -0600 Subject: [PATCH] added some missing files --- system/src/Grav/Console/Cli/SandboxCommand.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/system/src/Grav/Console/Cli/SandboxCommand.php b/system/src/Grav/Console/Cli/SandboxCommand.php index c2f1cc5be..024ef4b4d 100644 --- a/system/src/Grav/Console/Cli/SandboxCommand.php +++ b/system/src/Grav/Console/Cli/SandboxCommand.php @@ -25,11 +25,18 @@ class SandboxCommand extends Command protected $files = array('/.dependencies', '/.htaccess', + '/nginx.conf', + '/web.config', '/user/config/site.yaml', '/user/config/system.yaml', ); - protected $mappings = array('/index.php' => '/index.php', + protected $mappings = array('/.editorconfig' => '/.editorconfig', + '/.gitignore' => '/.gitignore', + '/CHANGELOG.md' => '/CHANGELOG.md', + '/LICENSE' => '/LICENSE', + '/README.md' => '/README.md', + '/index.php' => '/index.php', '/composer.json' => '/composer.json', '/bin' => '/bin', '/system' => '/system',