Skip to content

Commit

Permalink
Be explicit about the supported versions of PHP
Browse files Browse the repository at this point in the history
The constraint used for the PHP version is far too permissive as we
cannot predict if the library will be compatible with future versions of
PHP without any change.
  • Loading branch information
LeSuisse committed Jul 27, 2020
1 parent 80bc1c5 commit ca91ad9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 23 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Prometheus instrumentation library",
"license": "Apache-2.0",
"require": {
"php": ">=7.3",
"php": "^7.3|^7.4|^8.0",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
Expand Down
24 changes: 2 additions & 22 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ca91ad9

Please sign in to comment.