Skip to content

Commit

Permalink
relax composer version requirements (#918)
Browse files Browse the repository at this point in the history
using self.version does not work when we have different components being released individually. ^1.0 seems like a sensible initial setting now that we have reached beta.
  • Loading branch information
brettmc authored Feb 15, 2023
1 parent c4428aa commit 703e6f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
],
"require": {
"php": "^7.4 || ^8.0",
"open-telemetry/api": "self.version",
"open-telemetry/context": "self.version"
"open-telemetry/api": "^1.0",
"open-telemetry/context": "^1.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 703e6f3

Please sign in to comment.