Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion XDebugHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


namespace NetteExtras;
use Nette\Diagnostics\IBarPanel;
use Tracy\IBarPanel;


class XDebugHelper implements IBarPanel
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
}
],
"require": {
"php": ">= 5.3.0",
"nette/nette": "2.*"
"php": ">= 5.6",
"tracy/tracy": "2.*"
},
"require-dev": {
"ext-xdebug": "*"
Expand Down
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ enables you to easily start and stop a Xdebug session.
Requirements
------------

* Nette Framework 2.0
* PHP 5.3 or greater
* Nette Framework 2.3
* PHP 5.6 or greater

If you wish to run this extension on PHP 5.2, just remove the namespace and
use block in XDebugHelper.php.
Expand All @@ -22,9 +22,9 @@ Usage

Simply register a new debug panel in your config.neon:

nette:
debugger:
bar: [NetteExtras\XDebugHelper()]
tracy:
bar:
- NetteExtras\XDebugHelper

You can optionally specify your IDE key as the first parameter of
the XDebugHelper constructor. Defaults to netbeans-xdebug, which is the most
Expand Down