File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 5
5
### Added
6
6
* WIP add support for email account for contacts
7
7
8
+ ## 3.3.1 (2024.07.29)
9
+ ### Changed
10
+ * removed ` ext-bcmath ` in composer requirement
8
11
9
12
## 3.3.0 (2024.07.10)
10
13
Original file line number Diff line number Diff line change 22
22
"require" : {
23
23
"php" : " 7.4.* || 8.2.* || 8.3.*" ,
24
24
"ext-json" : " *" ,
25
- "ext-bcmath" : " *" ,
26
25
"ext-curl" : " *" ,
27
26
"ext-intl" : " *" ,
28
27
"psr/log" : " ^1.1.4 || ^2.0 || ^3.0" ,
Original file line number Diff line number Diff line change 1
1
FROM php:7.4-cli-alpine
2
2
3
3
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
6
6
7
7
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/bin --filename=composer --quiet
8
8
You can’t perform that action at this time.
0 commit comments