From e6ebac82775cc3521a9293b83d009bf00e464c18 Mon Sep 17 00:00:00 2001 From: Marcin Kurczewski Date: Tue, 2 Sep 2014 19:40:51 +0200 Subject: [PATCH] Moved config.ini to data --- .gitignore | 1 - data/.gitignore | 1 + config.ini => data/config.ini | 0 src/di.php | 4 ++-- 4 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 data/.gitignore rename config.ini => data/config.ini (100%) diff --git a/.gitignore b/.gitignore index 2d876183..7579f743 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ -local.ini vendor composer.lock diff --git a/data/.gitignore b/data/.gitignore new file mode 100644 index 00000000..81ab0a92 --- /dev/null +++ b/data/.gitignore @@ -0,0 +1 @@ +local.ini diff --git a/config.ini b/data/config.ini similarity index 100% rename from config.ini rename to data/config.ini diff --git a/src/di.php b/src/di.php index b3d141ef..d75b294a 100644 --- a/src/di.php +++ b/src/di.php @@ -1,8 +1,8 @@ DI\object()->constructor([ - __DIR__ . DS . '..' . DS . 'config.ini', - __DIR__ . DS . '..' . DS . 'local.ini']), + __DIR__ . DS . '..' . DS . 'data' . DS . 'config.ini', + __DIR__ . DS . '..' . DS . 'data' . DS . 'local.ini']), \Szurubooru\ControllerRepository::class => DI\object()->constructor(DI\link('controllers')),