我已经安装了 composer,现在需要安装 php_ffmpeg

i have installed composer and now need to install php_ffmpeg

嘿,我已经在我的 windows7 64 位 wamp 服务器上成功下载并安装了 composer,我需要通过 composer 安装 php_ffmpeg。 我不知道我已经阅读了他们的文档,但不是很清楚? 请让我知道下一步。

我从这个 link

中获得了有关作曲家和 php_ffmpeg 的详细信息
https://github.com/PHP-FFMpeg/PHP-FFMpeg

这是我通过 cmd

更新、要求和安装 composer 时得到的代码
C:\Windows\system32>composer update
 Loading composer repositories with package information
Updating dependencies (including require-dev)
 Nothing to install or update
 Generating autoload files

 C:\Windows\system32>composer require php-ffmpeg/php-ffmpeg
    Using version ^0.6.0 for php-ffmpeg/php-ffmpeg
   ./composer.json has been updated
     Loading composer repositories with package information
     Updating dependencies (including require-dev)
     Nothing to install or update
      Generating autoload files

       C:\Windows\system32>composer install
      Loading composer repositories with package information
      Installing dependencies (including require-dev) from lock file
       Nothing to install or update
        Generating autoload files

这是我的 wamp 服务器和已安装模块的屏幕截图

有两种方法,

  1. 从命令行
composer require php-ffmpeg/php-ffmpeg
  1. 将 "require" 部分添加到您的 composer.json
  "require": {
      "php-ffmpeg/php-ffmpeg": "dev-master"
  }

并执行

composer install