diff --git a/build.xml b/build.xml index 77310528adca7cf46ea3077585aff91e71daa28a..18726a3b10ecf2bb6ae6d7b50d9881c59e2a1aff 100644 --- a/build.xml +++ b/build.xml @@ -46,6 +46,12 @@ <phingcall target="phpdoc"/> <phingcall target="phpcpd"/> <phingcall target="pdepend"/> + <phingcall target="phploc"/> + </target> + + <!-- Measure project with phploc --> + <target name="phploc"> + <exec command="phploc --log-csv ${builddir}/reports/phploc.csv ${srcdir}/module" /> </target> <!-- PHP_Depend code analysis -->