33 lines
648 B
INI
33 lines
648 B
INI
; php.ini - Minimal Testing Configuration
|
|
|
|
error_reporting = E_ALL
|
|
display_errors = On
|
|
display_startup_errors = On
|
|
log_errors = On
|
|
html_errors = On
|
|
|
|
memory_limit = -1
|
|
upload_max_filesize = 100M
|
|
post_max_size = 100M
|
|
max_execution_time = 300
|
|
max_input_time = 300
|
|
|
|
variables_order = "EGPCS"
|
|
default_socket_timeout = 60
|
|
date.timezone = UTC
|
|
session.use_strict_mode = 1
|
|
session.use_cookies = 1
|
|
session.use_only_cookies = 1
|
|
|
|
extension_dir = "/opt/homebrew/lib/php/pecl/20250925"
|
|
|
|
; Common Extensions (Uncomment as needed)
|
|
; extension=curl
|
|
; extension=gd
|
|
; extension=mbstring
|
|
; extension=openssl
|
|
; extension=pdo_mysql
|
|
|
|
; On windows:
|
|
;extension_dir = "ext"
|