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
53 lines (53 loc) · 1.35 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.35 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
{
"name": "thesis/protobuf",
"description": "A modern strictly typed full-featured serializer for Google's protocol buffers.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Valentin Udaltsov",
"email": "udaltsov.valentin@gmail.com"
},
{
"name": "kafkiansky",
"email": "vadimzanfir@gmail.com"
},
{
"name": "Thesis Team",
"homepage": "https://github.com/orgs/thesis-php/people"
}
],
"require": {
"php": "^8.4",
"ext-bcmath": "*",
"psr/simple-cache": "^3.0",
"thesis/endian": "^0.3.0",
"thesis/varint": "^0.2.0"
},
"require-dev": {
"ext-filter": "*",
"phpunit/phpunit": "^12.4.4",
"symfony/var-dumper": "^6.4.15 || ^7.3.5"
},
"autoload": {
"psr-4": {
"Thesis\\Protobuf\\": "src/"
},
"files": [
"src/constructors.php",
"src/Internal/Buffer/buffer.php",
"src/Internal/Wire/Tag.php",
"src/Internal/Wire/wire.php",
"src/Reflection/Internal/numeric.php"
]
},
"autoload-dev": {
"psr-4": {
"Thesis\\Protobuf\\": "tests/"
}
},
"config": {
"lock": false,
"sort-packages": true
}
}