Skip to content

Instantly share code, notes, and snippets.

@clasense4
Forked from hacfi/disable-xdebug.sh
Last active November 19, 2016 12:25
Show Gist options
  • Save clasense4/ece643fd88f1d9a8abc86057d273ff66 to your computer and use it in GitHub Desktop.
Save clasense4/ece643fd88f1d9a8abc86057d273ff66 to your computer and use it in GitHub Desktop.
OS X homebrew php 7.0 enable/disable xdebug extension script
#!/bin/sh
sed -i.default "s/^zend_extension=/;zend_extension=/" /usr/local/etc/php/7.0/conf.d/ext-xdebug.ini
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.php70.plist
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.php70.plist
echo "xdebug disabled"
#!/bin/sh
sed -i.default "s/^;zend_extension=/zend_extension=/" /usr/local/etc/php/7.0/conf.d/ext-xdebug.ini
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.php70.plist
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.php70.plist
echo "xdebug enabled"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment