Skip to content

Commit

Permalink
Update to using PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
StatsProIO committed Aug 3, 2024
1 parent d4d0df4 commit b019cc8
Show file tree
Hide file tree
Showing 4 changed files with 607 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app.local.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.1-fpm
FROM php:8.3-fpm

ENV APP_ENV=local

Expand Down
2 changes: 1 addition & 1 deletion app.prod.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.1-fpm
FROM php:8.3-fpm

RUN apt-get update && apt-get install -y \
procps \
Expand Down
7 changes: 6 additions & 1 deletion src/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
"whichbrowser/parser": "^2.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.13",
"laravel/breeze": "^1.10",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"php-ffmpeg/php-ffmpeg": "^1.2",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
Expand Down Expand Up @@ -65,7 +67,10 @@
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
Expand Down
Loading

0 comments on commit b019cc8

Please sign in to comment.