diff --git a/composer.json b/composer.json index e869ab7..b90a120 100644 --- a/composer.json +++ b/composer.json @@ -20,10 +20,10 @@ "bsr/utils" : "^v1.0.1" }, "autoload": { - "psr-4": {"BSR\\" : "src/"} + "psr-4": {"Bsr\\" : "src/"} }, "autoload-dev": { - "psr-4": {"BSR\\" : "tests/"} + "psr-4": {"Bsr\\" : "tests/"} }, "require-dev": { "pds/skeleton": "^1.0", diff --git a/config/configuration.local.php b/config/configuration.local.php index fca09f2..bec3e0d 100644 --- a/config/configuration.local.php +++ b/config/configuration.local.php @@ -24,7 +24,7 @@ return array( 'path' => 'solr/', 'result_count' => 10, ), - 'renderer' => array('class' => '\BSR\Webservice\MockRenderer'), + 'renderer' => array('class' => '\Bsr\Webservice\MockRenderer'), 'log' => array( 'file' => realpath(dirname(__FILE__) . '/..') . '/log/log.txt', 'format' => '%ip% - [%date%] - %status% %error% - %time% - %func%', diff --git a/tests/Webservice/Formatter/FormatterTest.php b/tests/Webservice/Formatter/FormatterTest.php index dbe15fc..c7e5f65 100644 --- a/tests/Webservice/Formatter/FormatterTest.php +++ b/tests/Webservice/Formatter/FormatterTest.php @@ -1,5 +1,5 @@