From e968374f6b919611495693f5178ddcb8c1d358cd Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Thu, 27 Dec 2012 17:30:34 -0500 Subject: [PATCH] Fixing hanging-comma and adding autoload key Just a small fix and small addition: * The extra comma after the version is bad JSON - it should make Composer sad :/ * The autoload config will allow the Zencoder classes to be autoloaded without any trouble Thanks! --- composer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 63a31c0..32bfcb8 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,12 @@ "type":"library", "license":"MIT", "require": { - "php": ">=5.2.0", + "php": ">=5.2.0" + }, + "autoload": { + "psr-0" : { + "Services_Zencoder" : "" + } }, "authors":[ {