-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 716 Bytes
/
.env.example
File metadata and controls
23 lines (18 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copy this file to .env and customize as needed: cp .env.example .env
# PHP Version (supported: 8.1, 8.2, 8.3, 8.4, 8.5)
# Available versions: https://hub.docker.com/_/php
PHP_VERSION=8.5
# Composer Version
# Available versions: https://getcomposer.org/download/ (e.g., 2.8.4, 2.7.1, etc.)
COMPOSER_VERSION=2.8.4
# User/Group ID (set to match your host user to avoid permission issues)
# Run `id -u` and `id -g` on your host to get these values
USER_ID=1000
GROUP_ID=1000
# Timezone
TIMEZONE=UTC
# Xdebug Mode (off, debug, coverage, develop)
# Set to 'off' to disable Xdebug (improves performance)
# Set to 'coverage' to enable code coverage for tests
# Set to 'debug' to enable step debugging
XDEBUG_MODE=off