Skip to content

Instantly share code, notes, and snippets.

@filhocodes
Created December 23, 2018 13:09
Show Gist options
  • Save filhocodes/bfd266ec413413eb4a82dec205817717 to your computer and use it in GitHub Desktop.
Save filhocodes/bfd266ec413413eb4a82dec205817717 to your computer and use it in GitHub Desktop.
PHP Config (for Development)
# Execution limits
max_execution_time = 30
max_input_time = 60
memory_limit = 128M
# Development
error_reporting = E_ALL
display_errors = On
display_startup_errors = On
html_errors = On
# Data
post_max_size = 128M
file_uploads = On
upload_max_filesize = 32M
max_file_uploads = 20
# Extensions
extension=curl
extension=fileinfo
extension=gd2
extension=gettext
extension=intl
extension=imap
extension=mbstring
extension=exif
extension=mysqli
extension=openssl
extension=pdo_mysql
extension=pdo_pgsql
extension=pdo_sqlite
extension=pgsql
extension=soap
extension=sockets
extension=sqlite3
extension=tidy
extension=xmlrpc
extension=xsl
# Date
date.timezone=America/Sao_Paulo
# OpCache
opcache.enable=0
zend_extension=# FILL IT
[xdebug]
xdebug.remote_enable=on
xdebug.remote_autostart=on
xdebug.remote_connect_back=on
xdebug.var_display_max_depth=-1
xdebug.var_display_max_children=-1
xdebug.var_display_max_data=-1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment