fix: upgrade PHP 8.3 → 8.4 in Dockerfile for Laravel 13 compatibility
Laravel 13's Symfony dependencies require PHP >= 8.4.1. The container was
crash-looping because the entrypoint hit Composer's platform check against
the 8.3 runtime.
Co-Authored-By:
Claude Opus 4.6 <noreply@anthropic.com>
Showing
| ... | @@ -6,7 +6,7 @@ | ... | @@ -6,7 +6,7 @@ |
| "keywords": ["laravel", "framework"], | "keywords": ["laravel", "framework"], | ||
| "license": "MIT", | "license": "MIT", | ||
| "require": { | "require": { | ||
| "php": "^8.3", | "php": "^8.4", | ||
| "laravel/framework": "^13.8", | "laravel/framework": "^13.8", | ||
| "laravel/tinker": "^3.0", | "laravel/tinker": "^3.0", | ||
| "livewire/livewire": "^4.3" | "livewire/livewire": "^4.3" | ||
| ... | ... |
Please register or sign in to comment