Skip to content

Commit

Permalink
Remove ext-bcmath dependency
Browse files Browse the repository at this point in the history
Remove `ext-bcmath` from composer.json and Dockerfile since it is no longer required. The appropriate changes have been documented in the CHANGELOG.

Signed-off-by: B24io <app@b24.io>
  • Loading branch information
b24io-sdk committed Jul 29, 2024
1 parent 8468e7a commit c33e72c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
### Added
* WIP add support for email account for contacts

## 3.3.1 (2024.07.29)
### Changed
* removed `ext-bcmath` in composer requirement

## 3.3.0 (2024.07.10)

Expand Down
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"require": {
"php": "7.4.* || 8.2.* || 8.3.*",
"ext-json": "*",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-intl": "*",
"psr/log": "^1.1.4 || ^2.0 || ^3.0",
Expand Down
4 changes: 2 additions & 2 deletions docker/php-cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM php:7.4-cli-alpine

RUN apk add unzip libpq-dev git icu-dev \
&& docker-php-ext-install bcmath intl \
&& docker-php-ext-enable bcmath intl
&& docker-php-ext-install intl \
&& docker-php-ext-enable intl

RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/bin --filename=composer --quiet

Expand Down

0 comments on commit c33e72c

Please sign in to comment.