1{
2    "name": "apache/thrift",
3    "description": "Apache Thrift RPC system",
4    "homepage": "http://thrift.apache.org",
5    "type": "library",
6    "keywords": ["RPC"],
7    "license": "Apache-2.0",
8    "readme": "README.md",
9    "authors": [
10        {
11            "name": "Apache Thrift Developers",
12            "email": "dev@thrift.apache.org",
13            "homepage": "http://thrift.apache.org"
14        }
15    ],
16    "support": {
17        "email": "dev@thrift.apache.org",
18        "issues": "https://issues.apache.org/jira/browse/THRIFT"
19    },
20    "require": {
21        "php": "^5.5 || ^7.0"
22    },
23    "require-dev": {
24        "phpunit/phpunit": "~4.8.36",
25        "squizlabs/php_codesniffer": "3.*"
26    },
27    "autoload": {
28        "psr-4": {"Thrift\\": "lib/php/lib/"}
29    },
30    "autoload-dev": {
31        "psr-4": {"Test\\Thrift\\": "lib/php/test/"}
32    },
33    "minimum-stability": "stable",
34    "extra": {
35        "branch-alias": {
36            "dev-master": "1.0.x-dev"
37        }
38    }
39}
40