From ebdb45d4a307d2ede5c15b3cb067b00202f1b190 Mon Sep 17 00:00:00 2001 From: Dmitry Lezhnev Date: Tue, 21 Jun 2022 21:50:48 +0500 Subject: [PATCH 1/2] Relax psr/log dependency as per #161 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", From b051dc36b5fe307bec79ce8390a9ae92c04362b6 Mon Sep 17 00:00:00 2001 From: Dmitry Lezhnev Date: Tue, 21 Jun 2022 21:56:10 +0500 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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