Skip to content

Commit afb4789

Browse files
authored
Merge pull request #35 from b24io/feature/v3-remove-ext-bcmath
Remove ext-bcmath dependency
2 parents 8468e7a + c33e72c commit afb4789

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
### Added
66
* WIP add support for email account for contacts
77

8+
## 3.3.1 (2024.07.29)
9+
### Changed
10+
* removed `ext-bcmath` in composer requirement
811

912
## 3.3.0 (2024.07.10)
1013

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"require": {
2323
"php": "7.4.* || 8.2.* || 8.3.*",
2424
"ext-json": "*",
25-
"ext-bcmath": "*",
2625
"ext-curl": "*",
2726
"ext-intl": "*",
2827
"psr/log": "^1.1.4 || ^2.0 || ^3.0",

docker/php-cli/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM php:7.4-cli-alpine
22

33
RUN apk add unzip libpq-dev git icu-dev \
4-
&& docker-php-ext-install bcmath intl \
5-
&& docker-php-ext-enable bcmath intl
4+
&& docker-php-ext-install intl \
5+
&& docker-php-ext-enable intl
66

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

0 commit comments

Comments
 (0)