-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 933 Bytes
/
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
{
"name": "gtt/thrift-generator",
"type": "library",
"description": "Generates .thrift files based on php classes signatures",
"keywords": ["thrift", "php", "generator"],
"license": "MIT",
"authors": [
{
"name": "Alex Medvedev",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-code": "~2.3",
"zendframework/zend-server": "~2.3"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"apache/thrift": "1.0.x-dev",
"symfony/process": "~2.3",
"mikey179/vfsstream": "~1.0"
},
"autoload": {
"psr-4": { "Gtt\\ThriftGenerator\\": "src/Gtt/ThriftGenerator" }
},
"autoload-dev": {
"psr-4": { "Gtt\\ThriftGenerator\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}