vote up 10 vote down star
6

There are so many options when it comes to PHP development environments and you have to piece it all together yourself.

I'm wondering if someone has come up with what they think is the ideal setup that gets out of your way and lets you develop.

Right now I use vim and svn from the command-line. I write scripts to manage builds but I'm thinking about looking into Phing.

I love vim but I'm seriously thinking of trying Eclipse with the PHP plugin because I imagine it makes common SVN options a bit easier (moving files around in a project).

Something to support continuous integration on the database would be a major plus!

UPDATE: Just wanted to stress that previous line up there. I realize some frameworks will help with this, but I don't use a framework. Is there some simple module out there (included in the IDE or not) that will let me easily tie my database schemas/data to a subversion revision, letting me rollback and forward, tag, branch, etc?

Any comments on things beyond the editor? For example: Builds, managing staging/production/development environments, automated testing and building upon SVN commit, etc. Ideally we can make this post a "Go to Whoah" for setting up a professional PHP team development environment.

flag

5 Answers

vote up 3 vote down

I recommend to use a complete featured IDE like the PDT (the eclipse PHP project), it gives you: debugging (using Xdebug or ZendDebugger)

SVN/CVS very convinient integration

DB integration (the DTP plugin)

and much more, based on features of the PDT and eclipse plugins

if you have some money to spent, I think the Zend Studio For eclipse worth it. It gives you better debugging, PHPUnit integration, ZendFramewrok support, Refactoring and remote system support (ftp, ssh etc.)

link|flag
Thank you this sounds interesting. I tried Zend Studio back in version 5 but found it a bit clunky when it came to dealing with code on a different machine (but still on the LAN). Do you find the Firefox and IE debugging plugins useful? – Kev Oct 16 '08 at 8:10
vote up 3 vote down

I'm giving Netbeans 6.5 PHP bundle a try and liking it very much. I find debugging in it is less clunky than in Eclipse PDT.

link|flag
Interesting. I've not tried NetBeans, I'll have to take a look. – doekman Oct 16 '08 at 8:11
vote up 1 vote down

I too love vim and used to develop using the same environment as you. These days though I find Eclipse PDT, with Subclipse for SVN integration, to be invaluable. XDebug is great too - no more var_dump();exit; for debugging.

One of the best plugins for a vim fan moving to Eclipse: viPlugin. Well worth the token licence fee to have vi key bindings in Eclipse.

link|flag
How is PHPUnit/SimpleTest support with PDT? Also, is the Xdebugging useful for web applications or just console scripts? – Tim Sullivan Oct 16 '08 at 8:09
I've not yet tried integrating unit testing, although I believe that integrating PHPUnit is easy. Xdebug is great for debugging web applications. – Richard Turner Oct 17 '08 at 9:13
vote up 0 vote down

If you are working from the command line, using Git's SVN module eases most of the SVN pain - it handles deletes and moves automagically.

The GUI front ends (kgit or qgit) provide a very intuitive history browser.

link|flag
vote up 0 vote down

I personally like the way that AptanaStudio has pre-packaged all the great Eclipse modules you need to have a very smooth PHP development environment

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.