我无法在PhpStorm中启动Symfony项目

时间:2019-09-30 16:50:32

标签: symfony phpstorm

3年后,我再次开始使用PhpStorm,我的第一个想法是将Symfony 4.x与PhpStorm一起使用。但是我无法从MacOS Mojave上的Terminal启动任何项目。

我已经安装了所有插件:Symfony,PHP注释,PHP工具箱

我还从Terminal Composer安装了Symfony。

当我在终端Symfony中用ls搜索时,没有显示。 在Finder中,我可以将其视为隐藏文件.symfony 试图加入像cd /.symfony这样的导演也没找到

1 个答案:

答案 0 :(得分:0)

我认为您是在谈论symfony cli,它与PHPstorm无关。

转到https://symfony.com/download并安装symfony cli

curl -sS https://get.symfony.com/cli/installer | bash

执行以下步骤后,symfony cli应该可以正常工作。

编辑:

别忘了安装cli后遵循写的步骤

Add this to your shell configuration file:
  export PATH="$HOME/.symfony/bin:$PATH"
Start a new shell, and then run 'symfony'

您必须在~/.bashrc文件的末尾添加该行