herrera-io/phar-update

该包已被 废弃 且不再维护。未建议替代包。

用于自更新Phars的库。

2.0.0 2013-11-09 17:13 UTC

This package is not auto-updated.

Last update: 2021-12-07 01:35:13 UTC


README

Build Status

用于自更新Phars的库。

摘要

此库用于处理打包成可分发Phars的应用程序的更新。模块化设计允许更灵活的更新过程。

安装

将其添加到Composer依赖列表中

$ composer require herrera-io/phar-update=1.*

使用

<?php

use Herrera\Phar\Update\Manager;
use Herrera\Phar\Update\Manifest;

$manager = new Manager(Manifest::loadFile(
    'http://box-project.org/manifest.json'
));

// update to the next available 1.x update
$manager->update('1.0.0', true);