Skip to content

Commit db3555d

Browse files
Merge pull request #3 from php-debugger/remove-xdebug-mentions
remove XDebug mentions
2 parents 7bc7d43 + a773d86 commit db3555d

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/getting-started/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Configuration
33
---
44

5-
PHP Debugger is configured through `php.ini` directives. Because it is a fork of Xdebug, most settings will look familiar — with the `php_debugger.` prefix.
5+
PHP Debugger is configured through `php.ini` directives, all carrying the `php_debugger.` prefix. If you have set up step debugging for PHP before, most settings will look familiar.
66

77
## Common settings
88

docs/getting-started/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Introduction
33
---
44

5-
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.
5+
PHP Debugger is a modern debugging extension for PHP that focuses exclusively on step debugging functionality. It leaves out profiling, coverage, and tracing entirely 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.
66

77
## Key Features
88

docs/reference/debug-protocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Debug Protocol
33
---
44

5-
PHP Debugger speaks the DBGp protocol, making it compatible with any IDE or tool that supports Xdebug.
5+
PHP Debugger speaks the DBGp protocol, making it compatible with any IDE or tool that speaks DBGp.
66

77
:::note
88
This page is a work in progress — full documentation is coming soon.

src/components/HomeFeatureStrip/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const features = [
4444
},
4545
{
4646
title: 'Zero Dependencies',
47-
text: 'No Xdebug required. Pure PHP implementation.',
47+
text: 'A single Zend extension. Nothing else to install.',
4848
icon: (
4949
<svg {...iconProps}>
5050
<path d="M12 2 21 7v10l-9 5-9-5V7l9-5z" />

0 commit comments

Comments
 (0)