views:

226

answers:

2

Does phpUnderControl have a built in code browser? If so, how do I change it to use PHP_CodeBrowser instead?

+1  A: 

I have not integrated those myself yet, but here are two links I bookmarked a while ago that could interest you :

Pascal MARTIN
Thanks for the help:)
Enrique
+3  A: 

Yes it has. What you need to do is to include phpcb (PHP_CodeBrowser) on your build process and have CruiseControl's artifacts publisher copies the result into your artifacts' folder.

<execute command="phpcb --log projects/${project.name}/build/logs --source projects/${project.name}/source/PHP --output projects/${project.name}/build/php-code-browser"/>

<artifactspublisher dir="projects/${project.name}/build/php-code-browser" dest="artifacts/${project.name}" subdirectory="php-code-browser"/>

Or alternatively, you may create a symbolic from artifacts folder pointing to phpcb's output directory.

e.g. ln -s /PATH/TO/PHPCB/OUTPUT/DIR/php-code-browser /PATH_TO_CRUISECONTROL/artifacts/PROJECT_NAME/LATEST_LOG/php-code-browser

battcor