diff --git a/Dockerfile b/Dockerfile index d05fc4c04..81115b43b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN MODE=$([ "$NO_DEV" = "0" ] && echo "development" || echo "production") \ RUN if [ "$NO_DEV" = "0" ]; \ then \ docker-php-ext-install pcntl \ - && pecl install xdebug-3.3.2 > /dev/null \ + && pecl install xdebug-3.4.0 > /dev/null \ && docker-php-ext-enable xdebug \ && echo "xdebug.output_dir = /tmp/xdebug" > "$PHP_INI_DIR/conf.d/xdebug.ini" \ && mkdir /tmp/xdebug; \ @@ -48,7 +48,7 @@ RUN sed -i 's/AllowOverride All/AllowOverride None/g' /etc/apache2/conf-enabled/ WORKDIR /smr/ RUN curl -sS https://getcomposer.org/installer | \ - php -- --install-dir=/usr/local/bin --filename=composer --version=2.7.4 + php -- --install-dir=/usr/local/bin --filename=composer --version=2.8.3 COPY composer.json . RUN COMPOSER_NO_DEV=$NO_DEV composer update --no-interaction diff --git a/api-docs/Dockerfile b/api-docs/Dockerfile index cacbd9605..a3e198298 100644 --- a/api-docs/Dockerfile +++ b/api-docs/Dockerfile @@ -1,6 +1,6 @@ FROM php:8.3.8-cli-alpine AS builder -RUN curl -L -O https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.5.0/phpDocumentor.phar +RUN curl -L -O https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.5.3/phpDocumentor.phar RUN chmod +x phpDocumentor.phar RUN mv phpDocumentor.phar /usr/local/bin/phpdoc diff --git a/docker-compose.yml b/docker-compose.yml index 5b544d544..b59bafc20 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -216,7 +216,7 @@ services: <<: *smr-cli traefik: - image: traefik:3.0 + image: traefik:3.2 networks: - frontend volumes: diff --git a/src/config.php b/src/config.php index f8dc7a394..8d4437e75 100644 --- a/src/config.php +++ b/src/config.php @@ -77,7 +77,7 @@ const SMR_FILE_VERSION = '1.07'; const JQUERY_URL = 'https://code.jquery.com/jquery-3.7.1.min.js'; -const JQUERYUI_URL = 'https://code.jquery.com/ui/1.13.3/jquery-ui.min.js'; +const JQUERYUI_URL = 'https://code.jquery.com/ui/1.14.1/jquery-ui.min.js'; const LISTJS_URL = 'https://cdnjs.cloudflare.com/ajax/libs/list.js/2.3.1/list.min.js'; const WIKI_URL = 'https://wiki.smrealms.de'; const DISCORD_URL = 'https://discord.me/smrealms';