deployer/phar-update

此包已被废弃且不再维护。没有建议的替代包。

集成了Phar Update到Symfony控制台。

v2.2.0 2019-12-12 13:45 UTC

This package is auto-updated.

Last update: 2020-08-14 12:27:04 UTC


README

Build Status

摘要

使用Phar Update库来

  1. 检查Phar的新版本
  2. 下载Phar
    • 通过SHA1校验和(如果可用)验证下载
  3. 用下载的更新替换正在运行的Phar

安装

将其添加到您的Composer依赖列表中

$ composer require deployer/phar-update

用法

use Deployer\Component\PharUpdate\Console\Command;
use Deployer\Component\PharUpdate\Console\Helper;
use Symfony\Component\Console\Application;

$command = new Command('update');
$command->setManifestUri('https://deployer.org/manifest.json');

$app = new Application();
$app->getHelperSet()->set(new Helper());
$app->add($command);