forked from protobuf-php/protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.56 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
{
"name" : "protobuf-php/protobuf",
"description" : "PHP implementation of Google's Protocol Buffers",
"keywords" : ["protobuf", "protocol buffer", "serializing"],
"homepage" : "https://github.com/protobuf-php/protobuf",
"type" : "library",
"license" : "MIT",
"prefer-stable" : true,
"authors" : [
{
"name" : "Fabio B. Silva",
"email" : "[email protected]",
"homepage": "https://github.com/FabioBatSilva"
},
{
"name": "Iván -DrSlump- Montes",
"email": "[email protected]",
"homepage": "https://github.com/drslump"
}
],
"require" : {
"ext-mbstring" : "*",
"php" : ">=5.5.0"
},
"require-dev": {
"protobuf-php/protobuf-plugin" : ">=0.1",
"phpunit/phpunit" : "^4",
"instaclick/coding-standard" : "^1.1",
"squizlabs/php_codesniffer" : "^1.5",
"satooshi/php-coveralls" : "^0.6",
"php-mock/php-mock-phpunit" : "^0.2",
"instaclick/object-calisthenics-sniffs" : "dev-master",
"instaclick/symfony2-coding-standard" : "dev-remaster"
},
"autoload" : {
"psr-4": {
"Protobuf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProtobufTest\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}