-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
70 lines (70 loc) · 1.85 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
64
65
66
67
68
69
70
{
"name": "twirp/twirp",
"description": "PHP port of Twitch's Twirp RPC framework",
"license": "MIT",
"keywords": ["twirp", "rpc", "framework", "idl", "protobuf"],
"homepage": "https://twirphp.github.io",
"authors": [
{
"name": "Márk Sági-Kazár",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"php-http/discovery": "^1.19",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0"
},
"require-dev": {
"google/protobuf": "^3.23",
"guzzlehttp/guzzle": "^7.7",
"guzzlehttp/psr7": "^2.5",
"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/",
"Twirp\\Example\\": "example/src/",
"": [
"example/generated/",
"tests/clientcompat/generated/",
"tests/complete/generated/",
"tests/namespace/generated/"
],
"Twirp\\Tests\\Complete\\": "tests/complete/src/",
"Tests\\Twirp\\Complete\\": "tests/complete/tests/"
}
},
"config": {
"sort-packages": true,
"vendor-dir": "lib/vendor",
"allow-plugins": {
"php-http/discovery": false
}
},
"extra": {
"branch-alias": {
"dev-master": "0.11-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"archive": {
"exclude": [
"/vendor/*",
"/protoc-gen-twirp_php/*"
]
}
}