forked from dstevenson/Protobuf-PHP
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
36 lines (36 loc) · 1.05 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
{
"name" : "centraldesktop/protobuf-php",
"description": "PHP implementation of Google's Protocol Buffers",
"keywords" : ["protobuf", "protocol buffer", "serializing"],
"homepage" : "https://github.com/drslump/Protobuf-PHP",
"type" : "library",
"license" : "MIT",
"authors" : [
{
"name" : "Iván -DrSlump- Montes",
"email" : "[email protected]",
"homepage": "https://github.com/drslump/Protobuf-PHP"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/centraldesktop/php-option.git"
}
],
"bin" : ["protoc-gen-php.bat", "protoc-gen-php.php"],
"require" : {
"php" : ">=5.5.0",
"ext-mbstring" : "*",
"phpoption/phpoption": ">=1.6.0",
"symfony/console" : "3.4.*"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload" : {
"psr-0": {
"DrSlump": "library/"
}
}
}