From 2f4115d59a9a623f5742c4a04af53c19847daaa2 Mon Sep 17 00:00:00 2001 From: Guillermo Dev Date: Thu, 11 Oct 2018 13:08:43 +0200 Subject: [PATCH] changed package name to Utils to add the logger into it --- composer.json | 2 +- src/{Config => Utils/Configuration}/Configuration.php | 4 ++-- tests/{Config => Utils/Configuration}/ConfigurationTest.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) rename src/{Config => Utils/Configuration}/Configuration.php (98%) rename tests/{Config => Utils/Configuration}/ConfigurationTest.php (98%) diff --git a/composer.json b/composer.json index 14c01a9..391bec6 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name" : "bsr/config", + "name" : "bsr/utils", "description" : "Bsr configuration module", "authors" : [ { diff --git a/src/Config/Configuration.php b/src/Utils/Configuration/Configuration.php similarity index 98% rename from src/Config/Configuration.php rename to src/Utils/Configuration/Configuration.php index acb0b3e..6568007 100644 --- a/src/Config/Configuration.php +++ b/src/Utils/Configuration/Configuration.php @@ -1,5 +1,5 @@ defaultConfig = array('session' => array('save_path' => session_save_path())); - $this->dummyConfigFilePath = realpath(dirname(__FILE__) . '/../../config/configuration.local.php'); + $this->dummyConfigFilePath = realpath(dirname(__FILE__) . '/../../../config/configuration.local.php'); } public function testConfigurationInstanceIsTheSame()