WebStorm/PhpStorm links
Categories
Tags
Beta Commandline completion composer CSS database debug deployment documentation ecmascript5 editor ftp HTML html5 import inspection JavaScript LESS navigation Node.js offer PHP PhpStorm PHPUnit productivity Profiler Project RC refactoring Release SASS settings sftp smarty Symfony synchronisation TypeScript UI unit testing WebStorm WebStorm/PhpStorm links Xdebug youtrack zen-coding Zend Debugger-
Other JetBrains Blogs
Meta
Tag Archives: PHP
Working with Windows Azure SQL Database in PhpStorm
PhpStorm provides us the possibility to connect to Windows Azure SQL Database right from within the IDE. In this post, we’ll explore several options that are available for working with Windows Azure SQL Database (or database systems like SQL Server, … Continue reading
Posted in Cool Feature, PhpStorm
Tagged cloud, database, editor, PHP, PhpStorm, Windows Azure
8 Comments
Change signature refactoring in PhpStorm
A very powerful refactoring is the Change signature refactoring in PhpStorm. It enables us to modify a function signature in many ways: we can change the function name, change its visibility, add, remove and reorder parameters as well as rename … Continue reading
Folding for imports in PhpStorm 6.0
In PhpStorm 6, we’ve introduced code folding for imports. Any list of imports will now be folded into a single line. This greatly reduced clutter in your editor when having a lot of imports!
Optimize Imports for PHP
Those of you who have already tried PhpStorm 6 might have noticed a lot of great additions to PHP imports support. In this post we would like to tell you about a long awaited feature: Optimize Imports for PHP.
Posted in Cool Feature, PhpStorm
Tagged completion, import, inspection, PHP, PhpStorm, productivity, refactoring
5 Comments
PHPUnit installation via Composer in PhpStorm
Since version 3.7, PHPUnit allows us to install the test runner and optional dependencies using Composer. With PhpStorm 6, this workflow is now supported from the IDE. Using both the bundled Composer support and PhpStorm’s unit testing support, we can … Continue reading
Composer support in PhpStorm
One of the great things that happened in PHP world was the introduction of Composer, a dependency manager for PHP which allows us to specify dependencies for our project and have Composer install and update them for us. With PhpStorm … Continue reading
Running CakePHP2 Unit Tests in PhpStorm
CakePHP2 comes with unit testing support powered by PHPUnit. In addition to the features offered by PHPUnit, CakePHP offers some additional features to make testing easier. Unit tests in CakePHP rely on a custom test runner which can be run … Continue reading
Using GitHub without leaving PhpStorm
In a previous post we saw how PhpStorm handles Version Control Systems (VCS). A very popular VCS is Git, driven by the collaboration that’s possible using GitHub. In this post, we’ll explore several integrations with GitHub that are available from … Continue reading
Continuous Integration for PHP using TeamCity
If you have multiple team members, you should be doing Continuous Integration (CI). By building the desired output artifacts on a frequent basis and analyzing their quality using unit tests and code coverage, you will find that there are fewer … Continue reading
Posted in Cool Feature, Tutorial
Tagged deployment, PHP, PhpStorm, PHPUnit, productivity, TeamCity, unit testing
2 Comments