PHP Storm Updates and the new HTTP client capabilities
PhpStorm deeply
understands your code.
Major frameworks support
PhpStorm is perfect for working with Symfony, Laravel, Drupal, WordPress, Zend Framework, Magento, Joomla!, CakePHP, Yii, and other frameworks.
All the PHP tools
The editor actually 'gets' your code and deeply understands its structure, supporting all the PHP language features for modern and legacy projects. It provides the best code completion, refactorings, on-the-fly error prevention, and more.
Watch the review: enjoy: https://www.youtube.com/watch?v=h9KGsD87t_M&feature=emb_title
Read morePHPStorm and Xdebug with a D7 Site
I am trying to get everything set up to use PHPStorm and Xdebug to work on a D7 site for my new job. My local environment is OS X 10.11 with Apache 2.4.18, PHP 5.5, and MySQL 5.7. So far, I haven't been able to get it to work. Here's what I've done so far:
-
Modified the /private/etc/php.ini file with the following settings:
zend_extension="/usr/lib/php/extensions/no-debug-non-zts-20121212/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_mode="jit"
xdebug.remote_port="9000"
xdebug.idekey=PHPSTORM -
Ensured the PHP debug settings in PHPStorm were set correctly.

