-
-
Notifications
You must be signed in to change notification settings - Fork 665
Expand file tree
/
Copy pathdevilbox-php.ini-xdebug
More file actions
51 lines (42 loc) · 1.38 KB
/
devilbox-php.ini-xdebug
File metadata and controls
51 lines (42 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
; ############################################################
; # Devilbox php.ini: Xdebug example
; ############################################################
;
; Information
; -----------
; * Do not edit this file (it belongs to git)
; * This file show a possible Xdebug example configuration
; * If this file is enabled, it will overwrite the current Xdebug settings
;
; How to enable?
; --------------
; * Copy this file to another file with ".ini" extension
; * Only files with ".ini" extensions will be applied by PHP
;
; PHP.ini configuration
;
[PHP]
; Xdebug (version 3.1.6)
; Upgrade Guide: https://3.xdebug.org/docs/upgrade_guide
; Settings Guide: https://xdebug.org/docs/all_settings
;
; Use these settings to enable Xdebug for PHP
; Make sure to read up on Xdebug some settings might significantly slow down requests.
; The following is just an example configuration and should be adjusted.
; Defaults
xdebug.mode = debug
xdebug.remote_handler = dbgp
xdebug.start_with_request = yes
;xdebug.start_with_request = trigger
;xdebug.trigger_value = randomkey
; How to connect
xdebug.client_port = 9000
xdebug.client_host = host.docker.internal
xdebug.discover_client_host = 0
; Logging
xdebug.log = /var/log/php/xdebug.log
xdebug.log_level = 7
; IDE Configuration
xdebug.idekey = PHPSTORM
;xdebug.idekey = VSCODE
; vim: set ft=dosini: