forked from twirphp/twirp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.64 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
59
60
61
62
63
{
"name": "twirp/twirp",
"description": "PHP port of Twitch's Twirp RPC framework",
"license": "MIT",
"keywords": ["twirp", "rpc", "framework", "idl", "protobuf"],
"homepage": "https://twirphp.readthedocs.io",
"authors": [
{
"name": "Márk Sági-Kazár",
"email": "mark.sagikazar@gmail.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"php-http/discovery": "^1.13",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4.1",
"google/protobuf": "^3.15",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.0"
},
"conflict": {
"google/protobuf": "<3.5"
},
"autoload": {
"psr-4": {
"Twirp\\": "lib/src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Twirp\\": "lib/tests/",
"": ["clientcompat/generated/", "example/generated/"],
"Twirp\\Example\\": "example/src/",
"Tests\\Twirp\\Example\\": "example/tests/"
}
},
"config": {
"sort-packages": true,
"vendor-dir": "lib/vendor"
},
"extra": {
"branch-alias": {
"dev-master": "0.6-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"archive": {
"exclude": [
"/vendor/*",
"/vendor-bin/*",
"/protoc-gen-twirp_php/*"
]
}
}