Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
jQuery UI: 1.13.3 -> 1.14.1
Composer: 2.7.4 -> 2.8.3
phpDocumentor: 3.5.0 -> 3.5.3
traefik: 3.0 -> 3.2
Xdebug: 3.3.2 -> 3.4.0
  • Loading branch information
hemberger committed Dec 3, 2024
1 parent 65846a4 commit 6c9e940
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion api-docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ services:
<<: *smr-cli

traefik:
image: traefik:3.0
image: traefik:3.2
networks:
- frontend
volumes:
Expand Down
2 changes: 1 addition & 1 deletion src/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 6c9e940

Please sign in to comment.