我安装了一个新的symfony 2.4项目,我还使用composer.phar安装了phpDocumentor,然后执行以下步骤:
1-添加: “require-dev”:{ “phpdocumentor / phpdocumentor”:“2. *” 我的composer.json
2-执行:php composer.phar update
安装终止后,我可以在/ vendor中看到phpdocumentor文件夹,所以我猜安装会成功终止。
现在我想知道如何在symfony上使用phpDocumentor(为我的代码源生成文档)。
我在Ubuntu网络服务器上工作。
谢谢你,抱歉我的英语不好。
答案 0 :(得分:2)
第1步。将phpdocumentor/phpdocumentor
的依赖项添加到项目的require-dev
配置文件的composer.json
部分,然后更新您的应用程序。
{
"require-dev": {
"phpdocumentor/phpdocumentor": "2.*"
}
}
第2步。在项目中运行composer update命令
第3步。从vendor\phpdocumentor\phpdocumentor\bin
转到项目的CMD
目录,然后运行以下命令生成AppBundle/Controller
文件夹代码的文档。这将在AppBundle/Controller
目的地生成\phpdocumentor\phpdocumentor\bin\doc
文件夹的文档。
命令: - php phpdoc run -d ../../../../src/AppBundle/Controller/ -t doc/