THRIFT-1743: Add composer.json for new Symfony 2.1 Dependency Manager

From 583c1107169ed4ea8880e7e660064797c4759b7a Mon Sep 17 00:00:00 2001
From: Mauro Maggi <mauro.maggi@immobiliare.it>
Date: Fri, 28 Mar 2014 12:27:05 +0100
Subject: [PATCH 1/3] Add Composer.json for Thrift 0.9.1 release

Github Pull Request: This closes #90
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..521841e
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,25 @@
+{
+    "name": "apache/thrift",
+    "description": "Apache Thrift RPC system",
+    "homepage": "http://thrift.apache.org/",
+    "type": "library",
+    "license": "Apache-2.0",
+    "authors": [
+        {
+            "name": "Apache Thrift Developers",
+            "email": "dev@thrift.apache.org",
+            "homepage": "http://thrift.apache.org"
+        }
+    ],
+    "support": {
+        "email": "dev@thrift.apache.org",
+        "issues": "https://issues.apache.org/jira/browse/THRIFT"
+    },
+    "require": {
+        "php": ">=5.3.0"
+    },
+    "autoload": {
+        "psr-0": {"Thrift": "lib/php/lib/"}
+    },
+    "minimum-stability": "dev"
+}