Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I always designed/developed/released a software or web project myself/independent activity using java/vb.net and php (intermediate level of experience). But recently i have to work in a company with team of 5+ using Zend or Cakephp.

Q. My question is how do you work using php frameworks in team and all those SVN staffs? 10 ppls will make one class? or one module? or one front page? How is it made or gets implemented, in most cases? Can someone explain in details.

Thanks in advanced.

share|improve this question

1 Answer

up vote 5 down vote accepted

My advice would be to map work/resources to features, not to implementation. There are a lot of reasons for this, but here are the ones I think are key:

  1. You'll communicate better with business types because your organization and work maps to their functionality.
  2. Many, and perhaps most, technical components will play some role in multiple features. It's much easier, IMO, to have many hands operating on one source file than to have one hand operating across multiple business functions/features. A good SCM will help with problems arising from the former.

This doesn't eliminate, negate or trivialize the need for good internal communication, though. Tech teams must communicate effectively where cross-cutting concerns are identified.

share|improve this answer
1  
I'd also be more inclined to get certain people working on an MVC stack, with perhaps the front-end guy doing the views, and layouts – DavidYell Apr 1 '10 at 15:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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