32 lines
1.0 KiB
INI
32 lines
1.0 KiB
INI
; ─────────────────────────────────────────────────────────────
|
|
; WASL — Development PHP settings
|
|
; ─────────────────────────────────────────────────────────────
|
|
|
|
display_errors = On
|
|
display_startup_errors = On
|
|
log_errors = On
|
|
error_reporting = E_ALL
|
|
|
|
memory_limit = 512M
|
|
max_execution_time = 120
|
|
upload_max_filesize = 50M
|
|
post_max_size = 50M
|
|
|
|
; OPcache (with validation for dev hot-reload)
|
|
opcache.enable = 1
|
|
opcache.enable_cli = 1
|
|
opcache.memory_consumption = 128
|
|
opcache.max_accelerated_files = 10000
|
|
opcache.validate_timestamps = 1
|
|
opcache.revalidate_freq = 0
|
|
|
|
date.timezone = Asia/Damascus
|
|
|
|
; Xdebug
|
|
[xdebug]
|
|
xdebug.mode = debug,develop,coverage
|
|
xdebug.start_with_request = trigger
|
|
xdebug.client_host = host.docker.internal
|
|
xdebug.client_port = 9003
|
|
xdebug.log = /dev/stderr
|