diff --git a/CHANGELOG.md b/CHANGELOG.md index f3d35e07..e10d4be9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## Unreleased - [#180](https://github.com/Shopify/shopify-php-api/pull/180) Add optional `saving` parameter to `toArray` of `Base` class - default is `false` and will include read-only attributes in returned array; `true` used for `save` when committing via API to Shopify, which excludes read-only attributes. +- [#161](https://github.com/Shopify/shopify-php-api/pull/161) Set psr/log dependency to "^1.1|^2.0|^3.0" to allow usage in various newer projects. ## v2.0.1 - 2022-04-11 diff --git a/composer.json b/composer.json index c6bc85d7..fbb11bdd 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ "require": { "php": "^7.4 || ^8.0 || ^8.1", "ramsey/uuid": "^4.1", - "psr/log": "^1.1", + "psr/log": "^1.1|^2.0|^3.0", "firebase/php-jwt": "^5.2", "psr/http-client": "^1.0", "guzzlehttp/guzzle": "^7.0",