Skip to content

Commit

Permalink
Merge pull request #7 from carolabadeer/add-google-protobuf-dependency
Browse files Browse the repository at this point in the history
Add google/protobuf dependency to sample app composer.json
  • Loading branch information
carolabadeer authored May 16, 2023
2 parents f60ab86 + dc88707 commit fb866f6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
5 changes: 3 additions & 2 deletions SampleApp/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"ext-iconv": "*",
"aws/aws-sdk-php": "^3.234",
"aws/aws-sdk-php-symfony": "^2.5",
"grpc/grpc": "^1.42.",
"grpc/grpc": "^1.42",
"open-telemetry/api": "^1.0.0beta3",
"open-telemetry/sdk": "^1.0.0beta3",
"open-telemetry/contrib-aws": "^1.0.0beta3",
Expand All @@ -23,7 +23,8 @@
"symfony/framework-bundle": "6.1.*",
"symfony/http-client": "6.1.*",
"symfony/runtime": "6.1.*",
"symfony/yaml": "6.1.*"
"symfony/yaml": "6.1.*",
"google/protobuf": ">=3.5.0"
},
"config": {
"allow-plugins": {
Expand Down
9 changes: 8 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"minimum-stability": "dev",
"require": {
"aws/aws-sdk-php": "^3.234",
"open-telemetry/api": "^1.0.0beta3",
"php-http/guzzle7-adapter": "^1.0",
"open-telemetry/sdk": "^1.0.0beta3",
"open-telemetry/contrib-aws": "^1.0.0beta3",
"php-http/message": "^1.13",
"grpc/grpc": "^1.42"
"grpc/grpc": "^1.42",
"ext-grpc": "*"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}

0 comments on commit fb866f6

Please sign in to comment.