Skip to content

Commit 36aa65f

Browse files
docs
1 parent 33beb6d commit 36aa65f

4 files changed

Lines changed: 38 additions & 0 deletions

File tree

_config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ defaults:
3333
values:
3434
layout: single
3535
author_profile: false
36+
- scope:
37+
path: "docs"
38+
type: pages
39+
values:
40+
layout: single
41+
author_profile: false
42+
sidebar:
43+
nav: "docs"
44+
toc: false
3645

3746
# Plugins
3847
plugins:

_data/navigation.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
main:
2+
- title: "Docs"
3+
url: /docs/introduction/
4+
5+
docs:
6+
- title: "Getting Started"
7+
children:
8+
- title: "Introduction"
9+
url: /docs/introduction/
10+
- title: "Installation"
11+
url: /docs/installation/

docs/installation.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: single
3+
title: "Installation"
4+
permalink: /docs/installation/
5+
sidebar:
6+
nav: "docs"
7+
---
8+
9+
Installing PHP Debugger is straightforward and similar to installing other PHP extensions. The extension is available through PIE and can also be compiled from source. Once installed, you'll need to configure your php.ini file to enable the extension and set up your IDE to communicate with the debugger using the DBGp protocol.

docs/introduction.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: single
3+
title: "Introduction"
4+
permalink: /docs/introduction/
5+
sidebar:
6+
nav: "docs"
7+
---
8+
9+
PHP Debugger is a modern debugging extension for PHP that focuses exclusively on step debugging functionality. Built as a fork of Xdebug, it removes profiling, coverage, and tracing features to achieve near-zero overhead when debugging is not active. This makes it ideal for development environments where you want debugging capabilities without impacting performance during regular development work.

0 commit comments

Comments
 (0)