forked from apache/thrift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.45 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "apache/thrift",
"description": "Apache Thrift RPC system",
"homepage": "http://thrift.apache.org",
"type": "library",
"keywords": ["RPC"],
"license": "Apache-2.0",
"readme": "README.md",
"authors": [
{
"name": "Apache Thrift Developers",
"email": "[email protected]",
"homepage": "http://thrift.apache.org"
}
],
"support": {
"email": "[email protected]",
"issues": "https://issues.apache.org/jira/browse/THRIFT"
},
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
"squizlabs/php_codesniffer": "3.*",
"php-mock/php-mock-phpunit": "^2.10",
"ext-json": "*",
"ext-xml": "*",
"ext-curl": "*",
"ext-pcntl": "*"
},
"autoload": {
"psr-4": {"Thrift\\": "lib/php/lib/"}
},
"autoload-dev": {
"psr-4": {"Test\\Thrift\\": "lib/php/test/"}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"archive": {
"exclude": [
"*",
".*",
"!/CHANGES.md",
"!/LICENSE",
"!/NOTICE",
"!/README.md",
"!/composer.json",
"!/lib/php/README.apache.md",
"!/lib/php/README.md",
"!/lib/php/lib"
]
}
}