From 9083bd6433a1c5ca1ce0d1752513fff1f97ab539 Mon Sep 17 00:00:00 2001 From: Mark Rickerby Date: Wed, 13 Jun 2012 11:49:55 +1000 Subject: [PATCH] adding composer manifest to distribute as a library --- composer.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..a6b043bb --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "chrisboulton/php-diff", + "type": "library", + "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).", + "authors": [ + { + "name": "Chris Boulton", + "email": "@chrisboulton" + } + ], + "autoload": { + "psr-0": { + "Diff": "lib/" + } + } +} \ No newline at end of file