From 31c4ff57afe32c8e1f30a5f4961dfaff564f42bd Mon Sep 17 00:00:00 2001 From: Christer Edvartsen Date: Mon, 7 Aug 2017 14:51:47 +0200 Subject: [PATCH] Add autoload information to composer.json The commit adds the base directory of the project to the classmap way of autoloading classes through Composer. Resolves #5 --- composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9f5c7a5..ac3e8b7 100755 --- a/composer.json +++ b/composer.json @@ -1,5 +1,8 @@ { "require": { "phpunit/phpunit" : "4.8.*" + }, + "autoload": { + "classmap": ["./"] } -} \ No newline at end of file +}