5
- Unit Testing
  - Mocking 
  - Inversion of Control
  - Refactoring
  - Object Relational Mapping
  - Others?

I have found simpletest for unit testing and mocking and, though it leaves much to be desired, it kind-of sort of works.

I have yet to find any reasonable Inversion of Control framework (there is one that came up on phpclasses but no documentation and doesn't seem like anyone's tried it).

Alive to die - Anant
  • 70,531
  • 10
  • 51
  • 98
George Mauer
  • 117,483
  • 131
  • 382
  • 612

3 Answers3

3

phpUnderControl - continuous integration.

Don't forget about version control (e.g. using CVS or Subversion)!

1

Unit Testing - PHPUnit phpunit.de

ORM - Doctrine phpdoctrine.org, Propel propel.phpdb.org

Mike H
  • 369
  • 2
  • 11
  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Rizier123 Feb 06 '15 at 06:01
  • @Rizier123, the question asks for information on agile tools that can be used for PHP. The best way to answer this question is to provide links to these tools. It isn't really possible to include any other "essential parts" in the answer. What would they be? – DB5 Feb 06 '15 at 07:47
1

Agile Toolkit is a framework which focuses on Agile development values of producing software quickly then fine-tuning it.

romaninsh
  • 10,606
  • 4
  • 50
  • 70