-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 2.78 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 loc) · 2.78 KB
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
{
"autoload": {
"psr-4": {
"Google\\PostProcessor\\": "src/PostProcessor",
"Google\\Generator\\": "src",
"Google\\Generator\\Tests\\": "tests",
"Google\\": "generated/Google",
"Grpc\\": "generated/Grpc",
"GPBMetadata\\": "generated/GPBMetadata"
}
},
"autoload-dev": {
"psr-4": {
"Testing\\Basic\\": "tests/Unit/ProtoTests/Basic/out/src",
"Testing\\BasicAutoPopulation\\": "tests/Unit/ProtoTests/BasicAutoPopulation/out/src",
"Testing\\BasicBidiStreaming\\": "tests/Unit/ProtoTests/BasicBidiStreaming/out/src",
"Testing\\BasicClientStreaming\\": "tests/Unit/ProtoTests/BasicClientStreaming/out/src",
"Testing\\BasicDiregapic\\": "tests/Unit/ProtoTests/BasicDiregapic/out/src",
"Testing\\BasicGrpcOnly\\": "tests/Unit/ProtoTests/BasicGrpcOnly/out/src",
"Testing\\BasicLro\\": "tests/Unit/ProtoTests/BasicLro/out/src",
"Testing\\BasicOneof\\": "tests/Unit/ProtoTests/BasicOneof/out/src",
"Testing\\BasicOneofNew\\": "tests/Unit/ProtoTests/BasicOneofNew/out/src",
"Testing\\BasicPaginated\\": "tests/Unit/ProtoTests/BasicPaginated/out/src",
"Testing\\BasicExplicitPaginated\\": "tests/Unit/ProtoTests/BasicExplicitPaginated/out/src",
"Testing\\BasicServerStreaming\\": "tests/Unit/ProtoTests/BasicServerStreaming/out/src",
"Testing\\CustomLro\\": "tests/Unit/ProtoTests/CustomLro/out/src",
"Testing\\CustomLroNew\\": "tests/Unit/ProtoTests/CustomLroNew/out/src",
"Testing\\Deprecated\\": "tests/Unit/ProtoTests/DeprecatedService/out/src",
"Testing\\DisableSnippets\\": "tests/Unit/ProtoTests/DisableSnippets/out/src",
"Testing\\GrpcServiceConfig\\": "tests/Unit/ProtoTests/GrpcServiceConfig/out/src",
"Testing\\ResourceNames\\": "tests/Unit/ProtoTests/ResourceNames/out/src",
"Testing\\RoutingHeaders\\": "tests/Unit/ProtoTests/RoutingHeaders/out/src",
"Testing\\DiregapicPaginated\\": "tests/Unit/ProtoTests/DiregapicPaginated/out/src"
}
},
"require": {
"php": "^8.2",
"google/protobuf": "^5.0",
"friendsofphp/php-cs-fixer": "^3",
"symfony/yaml": "^5.2",
"microsoft/tolerant-php-parser": "^0.1.2",
"symplify/coding-standard": "13.0.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"google/gax": "^1.37.0"
},
"scripts": {
"update-all-tests": [
"Google\\Generator\\Tests\\Unit\\ProtoTests\\GoldenUpdateMain::updateAll",
"bash tests/scripts/run_bazel_updates.sh --expunge"
]
},
"config": {
"platform": {
"php": "8.2"
}
}
}