You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jf...@apache.org on 2013/03/29 16:42:42 UTC

git commit: Thrift-1743: Add Composer.json for Thrift 0.9.x release Client: PHP Patch: Xavier HAUSHERR

Updated Branches:
  refs/heads/0.9.x 1a15f7ced -> 352a50eb3


Thrift-1743: Add Composer.json for Thrift 0.9.x release
Client: PHP
Patch: Xavier HAUSHERR

Adds the composer.json file for the specific release for publishing the php client.


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/352a50eb
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/352a50eb
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/352a50eb

Branch: refs/heads/0.9.x
Commit: 352a50eb36b851bfb3f69469db580e6edfd6250f
Parents: 1a15f7c
Author: jfarrell <jf...@apache.org>
Authored: Fri Mar 29 10:51:58 2013 -0500
Committer: jfarrell <jf...@apache.org>
Committed: Fri Mar 29 10:51:58 2013 -0500

----------------------------------------------------------------------
 composer.json |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/352a50eb/composer.json
----------------------------------------------------------------------
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..b6318bc
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,31 @@
+{
+    "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/src/"}
+    },
+    "target-dir": "lib/php",
+    "minimum-stability": "dev",
+    "extra": {
+        "branch-alias": {
+            "dev-master": "0.9.x-dev"
+        }
+    }
+}