diff --git a/.env b/.env index c421d87..75ea690 100644 --- a/.env +++ b/.env @@ -1,20 +1,2 @@ -# In all environments, the following files are loaded if they exist, -# the latter taking precedence over the former: -# -# * .env contains default values for the environment variables needed by the app -# * .env.local uncommitted file with local overrides -# * .env.$APP_ENV committed environment-specific defaults -# * .env.$APP_ENV.local uncommitted environment-specific overrides -# -# Real environment variables win over .env files. -# -# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES. -# https://symfony.com/doc/current/configuration/secrets.html -# -# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2). -# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration - -###> symfony/framework-bundle ### APP_ENV=${APP_ENV:-prod} APP_SECRET=31180fc3aa11818328106d014be0108c -DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8" diff --git a/composer.json b/composer.json index 8c53fe1..868e48c 100644 --- a/composer.json +++ b/composer.json @@ -57,7 +57,7 @@ }, "config": { "platform": { - "php": "8.1" + "php": "8.2" }, "allow-plugins": { "composer/package-versions-deprecated": true, diff --git a/config/packages/doctrine.yaml b/config/packages/doctrine.yaml index e517e07..957e33d 100644 --- a/config/packages/doctrine.yaml +++ b/config/packages/doctrine.yaml @@ -1,6 +1,6 @@ doctrine: dbal: - url: '%env(resolve:DATABASE_URL)%' + # url: '%env(resolve:DATABASE_URL)%' # IMPORTANT: You MUST configure your server version, # either here or in the DATABASE_URL env var (see .env file)