bcmath in actions config and composer requirements

This commit is contained in:
2025-11-18 01:04:34 -08:00
parent 2cf1591ae6
commit 331759b7b3
3 changed files with 4 additions and 3 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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",