You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2014/04/11 20:43:23 UTC

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

Repository: thrift
Updated Branches:
  refs/heads/master 26c68ea14 -> 645c420b6


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

>From acba5ca4cb9d6d727e63b25a6ce8dfaf863190bc Mon Sep 17 00:00:00 2001
From: Mauro Maggi <ma...@immobiliare.it>
Date: Fri, 28 Mar 2014 17:18:30 +0100
Subject: [PATCH] Adds composer.json for Thrift dev-master branch and aliases
 dev-master to 1.0.x-dev

Github Pull Request: This closes #91


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

Branch: refs/heads/master
Commit: 645c420b64fac217694e616d0cce6ceed4620177
Parents: 26c68ea
Author: Roger Meier <ro...@apache.org>
Authored: Fri Apr 11 20:25:46 2014 +0200
Committer: Roger Meier <ro...@apache.org>
Committed: Fri Apr 11 20:25:46 2014 +0200

----------------------------------------------------------------------
 composer.json | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/645c420b/composer.json
----------------------------------------------------------------------
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..0f22b76
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,30 @@
+{
+    "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",
+    "extra": {
+        "branch-alias": {
+            "dev-master": "1.0.x-dev"
+        }
+    }
+}