Skip to content

Commit 2a7b0ac

Browse files
committed
Finish v0.41.0
2 parents 0b9821b + 583250a commit 2a7b0ac

File tree

5 files changed

+1888
-1417
lines changed

5 files changed

+1888
-1417
lines changed

Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM webdevops/php-nginx:8.0-alpine
1+
FROM webdevops/php-nginx:8.2-alpine
22

33
# Install Laravel framework system requirements (https://laravel.com/docs/8.x/deployment#optimizing-configuration-loading)
44
RUN apk add oniguruma-dev postgresql-dev libxml2-dev
@@ -8,7 +8,6 @@ RUN docker-php-ext-install \
88
fileinfo \
99
mbstring \
1010
pdo_mysql \
11-
tokenizer \
1211
xml
1312

1413
# Increase nginx client max_body_size and re-cache config on startup

app/Http/Controllers/User/DashboardController.php

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public function index(Request $request)
3838
}
3939

4040
$player = ServerPlayer::where('ckey', $request->user()->byond_key)->first();
41+
//ToDo: Handle situation with invalid ckey
4142

4243
//Get player warning data
4344
$playerwarning = new PlayerWarning($request->user()->byond_key);

composer.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"laravel/tinker": "^2.7",
1717
"laravelcollective/html": "^6.3",
1818
"league/flysystem-aws-s3-v3": "^3.0",
19-
"sentry/sentry-laravel": "^2.12",
19+
"sentry/sentry-laravel": "*",
2020
"socialiteproviders/manager": "^4.1",
2121
"yajra/laravel-datatables-html": "4.*",
2222
"yajra/laravel-datatables-oracle": "^9.0"
@@ -64,7 +64,10 @@
6464
"config": {
6565
"preferred-install": "dist",
6666
"sort-packages": true,
67-
"optimize-autoloader": true
67+
"optimize-autoloader": true,
68+
"allow-plugins": {
69+
"php-http/discovery": true
70+
}
6871
},
6972
"minimum-stability": "dev",
7073
"prefer-stable": true

0 commit comments

Comments
 (0)