bcmath in actions config and composer requirements
CI / testsuite (mysql, 8.2, ) (push) Successful in 12m5s Details
CI / testsuite (mysql, 8.4, ) (push) Successful in 11m24s Details
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Failing after 7m9s Details
CI / Coding Standard & Static Analysis (push) Failing after 7m1s Details

This commit is contained in:
Brandon Shipley 2025-11-18 01:04:34 -08:00
parent 2cf1591ae6
commit 331759b7b3
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
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",