phpbrew で php5.3.13 を入れて homebrew で php53-xdebug を入れたら以下のように怒られたのでその対処メモ
$ php -i | grep "Extension"
Xdebug requires Zend Engine API version 220100525.
The Zend Engine API version 220090626 which is installed, is outdated.
PHP Extension => 20090626
Zend Extension => 220090626
Zend Extension Build => API220090626,NTS
PHP Extension Build => API20090626,NTS
Extension Version => 2.0 ($Id$)
Extension Version => $Id$
要するに Xdebug が新し過ぎるということで、バージョンをひとつ落としてやった。 Homebrew で管理したいので、Formula を書いた。 [gist id=2885752 bump=1] Formula を追加して、インストール
$ brew install php53-xdebug214
おしまい