在Wamp服务器上安装Phinx

时间:2015-12-21 17:15:44

标签: php windows cmd wamp phinx

我想使用" Phinx"在我的项目中使用wamp server.I能够使用cmd安装:

遵循以下说明: http://docs.phinx.org/en/latest/install.html

composer require robmorgan/phinx 

但是当我运行命令时:

php vendor/bin/phinx init

输出结果为:

enter image description here

之后我的本地目录中没有安装phinx.yml文件

这是第一次在安装软件包时遇到问题..是否有任何解决方案/建议?

2 个答案:

答案 0 :(得分:2)

我使用命令解决了这个问题:

vendor/bin/phinx init

php vendor/bin/phinx init

也有同样的问题
php vendor/bin/phinx create MyFirstMigration 

您需要使用该命令

enter image description here

答案 1 :(得分:0)

我有同样的问题。解决方法:

  vendor/bin/phinx init 

注意:没有前面的php,还请注意,对于Windows,您将需要使用其他语法:

  vendor\bin\phinx init