xdebug: set start_with_request to default

This commit is contained in:
cytopia
2020-12-19 11:07:45 +01:00
parent 6be20c28e6
commit 74030c5c91
12 changed files with 18 additions and 13 deletions

View File

@@ -8,7 +8,12 @@
#### Fixed
- Fixex `redis` module compilation for PHP 8.1
- Fixed PHP Xdebug v3 defaults
- Fixed PHP Xdebug v3 defaults to:
```ini
xdebug.mode = Off
xdebug.start_with_request = default
xdebug.client_port = 9000
```
#### Changed
- Removed `pdo_dblib` from PHP 8.1 due to errors

View File

@@ -44,5 +44,5 @@ html_errors = Off
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -44,5 +44,5 @@ html_errors = Off
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -44,5 +44,5 @@ html_errors = Off
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -44,5 +44,5 @@ html_errors = Off
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -44,5 +44,5 @@ html_errors = Off
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -44,5 +44,5 @@ html_errors = On
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -44,5 +44,5 @@ html_errors = On
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -44,5 +44,5 @@ html_errors = On
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -44,5 +44,5 @@ html_errors = On
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -44,5 +44,5 @@ html_errors = On
; Xdebug settings
xdebug.mode = Off
xdebug.start_with_request = Off
xdebug.start_with_request = default
xdebug.client_port = 9000

View File

@@ -46,7 +46,7 @@ php_settings_ini:
xdebug2_remote_autostart: 'Off'
# Xdebug3 settings
xdebug3_mode: 'Off'
xdebug3_start_with_request: 'Off'
xdebug3_start_with_request: 'default'
xdebug3_client_port: '9000'
# ---- Inherits from base ----
@@ -71,7 +71,7 @@ php_settings_ini:
xdebug2_remote_autostart: 'Off'
# Xdebug3 settings
xdebug3_mode: 'Off'
xdebug3_start_with_request: 'Off'
xdebug3_start_with_request: 'default'
xdebug3_client_port: '9000'
# -------------------------------------------------------------------------------------------------