From a48d7137b14dee5f2f579734f57d2346faeb785f Mon Sep 17 00:00:00 2001 From: stanma Date: Thu, 30 Nov 2017 20:09:56 +0200 Subject: [PATCH] change for the namespace --- README.md | 4 ++-- composer.json | 2 +- src/Installer.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c0dd4c9..d951dfd 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ To enable code sniff, аdd to `post-install-cmd` and `post-update-cmd` in `compo "scripts": { "post-install-cmd": [ - "App\\Installer::postInstall" + "PHPCodeChecker\\Installer::postInstall" ], "post-update-cmd": [ - "App\\Installer::postInstall" + "PHPCodeChecker\\Installer::postInstall" ] } diff --git a/composer.json b/composer.json index 70daaa6..6c24b7f 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ ], "autoload": { "psr-4": { - "App\\": "src/" + "PHPCodeChecker\\": "src/" } }, "require": { diff --git a/src/Installer.php b/src/Installer.php index ed9271e..8b8684d 100644 --- a/src/Installer.php +++ b/src/Installer.php @@ -1,6 +1,6 @@