PHP Depend是用來檢查類別相依性的工具

安裝

#新增channel
pear channel-discover pear.pdepend.org
pear install pdepend/PHP_Depend

基本操作

#匯出xml report
pdepend --summary-xml=/tmp/summary.xml project/

#產生Overview Pyramid圖檔
pdepend --overview-pyramid=pyramid.svg project/

#產生折線圖
pdepend --jdepend-chart=jdepend.svg project/

報表欄位的資訊可以參考這裡

Categories: PHP