From 331759b7b3ae858e3f6184fa8b1f5632de31574d Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Tue, 18 Nov 2025 01:04:34 -0800 Subject: [PATCH] bcmath in actions config and composer requirements --- .gitea/workflows/ci.yaml | 2 +- .github/workflows/ci.yml | 2 +- composer.json | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 85f43aa..716eb56 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -47,7 +47,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} - extensions: mbstring, intl, sqlite, pdo_${{ matrix.db-type }} + extensions: mbstring, intl, bcmath, sqlite, pdo_${{ matrix.db-type }} coverage: pcov - name: Get composer cache directory diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 589b4c3..84a1672 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} - extensions: mbstring, intl, pdo_${{ matrix.db-type }} + extensions: mbstring, intl, bcmath, pdo_${{ matrix.db-type }} coverage: pcov - name: Get composer cache directory diff --git a/composer.json b/composer.json index 19012c6..b280900 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,8 @@ "license": "MIT", "require": { "php": ">=8.1", - "cakephp/cakephp": "^5.0.1" + "cakephp/cakephp": "^5.0.1", + "ext-bcmath": "*" }, "require-dev": { "phpunit/phpunit": "^10.1",