我正在尝试使 PhpStorm 命令行工具控制台在运行 Windows 的计算机上与 Composer 和 Laravel 一起使用。
所以这就是我所做的:
- 安装 WAMP
- 配置PHPStorm php解释器路径
- 使用安装的 Composer
Composer-Setup.exe
(所以我的 PATH 变量已设置)。 php_openssl
在 CLI 中启用mod。
Eveything 在本机和 cygwin 命令行中都可以正常工作。
但是当我尝试composer update
从 PhpStorm 命令行工具控制台创建一个时,我得到以下信息RuntimeException
(法语):
[RuntimeException]
Error Output: 'php' n'est pas reconnu en tant que commande interne
ou externe, un programme ex�cutable ou un fichier de commandes.
英文翻译给我们:
[RuntimeException]
Error Output: 'php' not recognized as an internal or external command,
operable program or batch file.
但是 php 在命令行中完美运行:
C:\Users\Me>php -v
PHP 5.4.12 (cli) (built: Feb 25 2013 00:29:22)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
with Xdebug v2.2.3, Copyright (c) 2002-2013, by Derick Rethans
有没有人知道如何使这项工作?