PHP cloud9 的美化器/格式化器IDE

PHP Beautifier / Formatter for cloud9 IDE

在我的 Cloud09 IDE 中,我启用了 PHP 设置 "Custom Code Formatter"

但保存会导致错误:No code formatter set for php: please check your project settings 没有像 JS (esformatter -i "$file") 那样预定义的格式化程序,google 也没有帮助...

如何使用此设置?

如何在 Cloud9 上安装 PHP 格式化程序?

我唯一的搜索显示 this Pear package 但它似乎已过时。

下载 php-cs-fixer https://github.com/FriendsOfPHP/PHP-CS-Fixer 到您的 Cloud9 工作区:

$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.0.0/php-cs-fixer.phar -O ~/php-cs-fixer

将其放入您的 ~/bin 目录:

$ mkdir ~/bin; mv ~/php-cs-fixer ~/bin

使文件可执行:

$ chmod a+x ~/bin/php-cs-fixer

为 PHP 配置 IDE 的自定义代码格式化程序设置,以便将格式化程序与 whatever rules you want:

一起使用
php-cs-fixer fix "$file" --rules=@Symfony,@PSR2

这就是我的 ~/workspace/.c9/project.settings 文件的样子:

...
"php": {
    "@completion": true,
    "@formatOnSave": true,
    "@formatter": "php-cs-fixer fix \"$file\" --rules=@Symfony,@PSR2",
    "@path": ".:./vendor:/usr/local/bin"
},
...