bcmath in actions config and composer requirements
This commit is contained in:
parent
2cf1591ae6
commit
331759b7b3
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue