Skip to content

Commit

Permalink
Change extension name from xdebug.so to xdebug
Browse files Browse the repository at this point in the history
  • Loading branch information
julienfalque committed Nov 29, 2020
1 parent 6bcbce0 commit 9ce7cf8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org).
### Changed

- The option `xdebug.remote_enable=on` is not passed anymore for Xdebug 3 compatibility
- The extension name to load is now `xdebug` instead of `xdebug.so`

## [v1.1.0](https://github.com/julienfalque/xdebug/compare/v1.0.0...v1.1.0) - 2020-03-13

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ _Note: the script was tested with PhpStorm only._
Compatibility
------------

The script currently supports PHP 5.6+ and Xdebug 2+.
The script currently supports PHP 7.2+ and Xdebug 2+.

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion xdebug
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ run_with_xdebug() {
exit 4
fi

XDEBUG_CONFIG=1 php -dzend_extension=xdebug.so "$@"
XDEBUG_CONFIG=1 php -dzend_extension=xdebug "$@"
}

if [ -f "$1" ]
Expand Down

0 comments on commit 9ce7cf8

Please sign in to comment.