From a0772658bfb393ebdcd5908f72fffbe625edf432 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Votruba?= Date: Wed, 25 Oct 2017 08:09:23 +0200 Subject: [PATCH] README: require absolute composer (#141) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c8fd85..f3ee24c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ PHP-ML requires PHP >= 7.0. Simple example of classification: ```php -require_once 'vendor/autoload.php'; +require_once __DIR__ . '/vendor/autoload.php'; use Phpml\Classification\KNearestNeighbors;