-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.09 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "google/common-protos",
"type": "library",
"description": "Google API Common Protos for PHP",
"version": "4.14.0",
"keywords": [
"google"
],
"homepage": "https://github.com/googleapis/common-protos-php",
"license": "Apache-2.0",
"require": {
"php": "^8.1",
"google/protobuf": "^4.31||^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Google\\Api\\": "src/Api",
"Google\\Cloud\\": "src/Cloud",
"Google\\Iam\\": "src/Iam",
"Google\\Rpc\\": "src/Rpc",
"Google\\Type\\": "src/Type",
"GPBMetadata\\Google\\Api\\": "metadata/Api",
"GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
"GPBMetadata\\Google\\Iam\\": "metadata/Iam",
"GPBMetadata\\Google\\Logging\\": "metadata/Logging",
"GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
"GPBMetadata\\Google\\Type\\": "metadata/Type"
}
},
"extra": {
"component": {
"id": "common-protos",
"target": "googleapis/common-protos-php.git",
"path": "CommonProtos",
"entry": "README.md"
}
}
}