From c4922336b7f61e9e0069bdaa6eb752abaeb432f7 Mon Sep 17 00:00:00 2001 From: Pascal Sommer Date: Sun, 14 Jan 2018 13:13:07 +0100 Subject: [PATCH] Add composer autoload support, bump version --- composer.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 52dae1e..ab3d517 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,14 @@ { "name": "simplepush/simplepush-php", "type": "library", - "version": "1.0.1", + "version": "1.0.2", "description": "Send push notifications to your smartphone with simplepush.io", "keywords": ["notification","android", "push", "simplepush", "app"], "homepage": "https://simplepush.io", "require": { - "php": ">=5.3.0" + "php": ">=5.3.0" + }, + "autoload": { + "classmap": ["src/Simplepush/Simplepush-PHP/Simplepush.php"] } }