forked from chobie/protoc-gen-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.15 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
{
"name": "protocolbuffers/protoc-gen-php",
"description": "protoc generator plugin for PECL ProtocolBuffers",
"type": "library",
"keywords": [
"protoc",
"protocol buffers"
],
"homepage": "https://github.com/chobie/protoc-gen-php",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Shuhei Tanuma",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/chobie/protoc-gen-php/issues"
},
"require": {
"php": ">=5.3.3",
"symfony/yaml": ">=2.4.2",
"symfony/console": ">=2.4.2",
"ext-pcre": "*",
"ext-protocolbuffers": "*"
},
"require-dev": {
"nikic/php-parser": "dev-master",
"phpspec/prophecy-phpunit": "~1.0",
"phpunit/phpunit": "3.7.*"
},
"bin": [
"bin/protoc-gen-php"
],
"autoload": {
"psr-0" : {
"protocolbuffers" : "src"
},
"files": [
"proto/autoload.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}