generated from thesis-php/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.03 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "thesis/protobuf-known-types",
"description": "Google protobuf known types collection.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "kafkiansky",
"email": "vadimzanfir@gmail.com"
},
{
"name": "Valentin Udaltsov",
"email": "udaltsov.valentin@gmail.com"
},
{
"name": "Thesis Team",
"homepage": "https://github.com/orgs/thesis-php/people"
}
],
"require": {
"php": "^8.4",
"ext-bcmath": "*",
"thesis/protobuf": "^0.1.6"
},
"require-dev": {
"phpunit/phpunit": "^13.0"
},
"autoload": {
"psr-4": {
"Google\\Protobuf\\": "src/"
},
"files": [
"src/autoload.metadata.php",
"src/anypb.php"
]
},
"autoload-dev": {
"psr-4": {
"Google\\Protobuf\\": "tests/"
}
},
"config": {
"lock": false,
"sort-packages": true
}
}