From 4137c72188cbcd7f2b35ebf1bcfff5e3be26f137 Mon Sep 17 00:00:00 2001 From: Markus Machatschek Date: Mon, 22 Nov 2021 15:53:14 +0100 Subject: [PATCH] [1.x] Allow moneyphp version 4 (#143) * Allow moneyphp version 4 * Update composer.json Co-authored-by: Dries Vints --- .github/workflows/tests.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7743636..89b0264 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,7 +31,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip + extensions: dom, curl, libxml, mbstring, zip, bcmath tools: composer:v2 coverage: none diff --git a/composer.json b/composer.json index 7473260..44b8473 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ "illuminate/routing": "^7.9|^8.0", "illuminate/support": "^7.9|^8.0", "illuminate/view": "^7.9|^8.0", - "moneyphp/money": "^3.2", + "moneyphp/money": "^3.2|^4.0", "nesbot/carbon": "^2.0", "spatie/url": "^1.3.5", "symfony/http-kernel": "^5.0",