634a5681b8
Previously it was releasing content from main/master, not the release branch! I fixed this by not checking out a separate copy of protobuf. Also updated the composer.json so we don't need to rewrite it with sed.
24 lines
557 B
Plaintext
24 lines
557 B
Plaintext
{
|
|
"name": "google/protobuf",
|
|
"type": "library",
|
|
"description": "proto library for PHP",
|
|
"keywords": ["proto"],
|
|
"homepage": "https://developers.google.com/protocol-buffers/",
|
|
"license": "BSD-3-Clause",
|
|
"require": {
|
|
"php": ">=7.0.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": ">=5.0.0"
|
|
},
|
|
"suggest": {
|
|
"ext-bcmath": "Need to support JSON deserialization"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Google\\Protobuf\\": "src/Google/Protobuf",
|
|
"GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
|
|
}
|
|
}
|
|
}
|