php经常用到的一些composer包

列举一些对开发有帮助的composer包,对于各个包的安装和使用不在这里做过多的介绍,持续更新。

1.phpDocumentor

对于有规范注释的PHP文件,生成对应的注释文档。
GitHub地址:https://github.com/phpDocumentor/phpDocumentor2

composer require "phpdocumentor/phpdocumentor:2.*"

2.PHP-CS-Fixer

根据PSR规范,自动规范php代码
GitHub地址:https://github.com/FriendsOfPHP/PHP-CS-Fixer

composer require friendsofphp/php-cs-fixer

你可能感兴趣的:(php,composer)