I'm doing PHP development and I'm thinking of using one of these. I have both PHP and Java installed on my machine. In theory I could use any of the two.
What are the compelling arguments to pick Phing over Ant?
I'm doing PHP development and I'm thinking of using one of these. I have both PHP and Java installed on my machine. In theory I could use any of the two.
What are the compelling arguments to pick Phing over Ant?
The greatest argument I have in favor of Phing is that it's fully developed in PHP ; which means, at least :
The main argument (for me) for using Phing when doing PHP development is
© 2022 - 2024 — McMap. All rights reserved.
phploc
,phpcpd
,phpdepend
,phpcs
andphpmd
, for example, don't seem to work and return exceptions. Also, it seems to have a problem finding these tools even if they are in the$PATH
directories. I ended up having to rewrite tasks to use these tools in generic Ant buildfile syntax i.e. using theexec
task to make them work with Phing. It almost defeated the purpose of using Phing. My build server was running PHP 7.2 if that matters. – Homeopathic