Skip to content

Commit 7743f33

Browse files
committed
Update requirements
1 parent 9dec6f8 commit 7743f33

File tree

9 files changed

+234
-182
lines changed

9 files changed

+234
-182
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.1-cli-alpine
1+
FROM php:8.4-cli-alpine
22

33
WORKDIR /app
44
COPY . /app
@@ -7,7 +7,7 @@ RUN echo "; PHP settings added by MongoDB PHP GUI (MPG)" > /usr/local/etc/php/co
77
&& echo "upload_max_filesize = 25M" >> /usr/local/etc/php/conf.d/mpg-docker-php.ini \
88
&& echo "post_max_size = 25M" >> /usr/local/etc/php/conf.d/mpg-docker-php.ini \
99
&& apk update && apk add --no-cache --virtual .build-deps autoconf build-base openssl-dev curl \
10-
&& pecl install mongodb-1.13.0 && docker-php-ext-enable mongodb \
10+
&& pecl install mongodb-2.1.0 && docker-php-ext-enable mongodb \
1111
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
1212
&& apk del .build-deps \
1313
&& composer install \

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
3-
"nimbly/limber": "^1.4",
4-
"nimbly/capsule": "^1.1.2",
5-
"mongodb/mongodb": "^1.12.0"
3+
"nimbly/limber": "^3.0.1",
4+
"nimbly/capsule": "^3.0.1",
5+
"mongodb/mongodb": "^2.1.0"
66
}
77
}

0 commit comments

Comments
 (0)