deployer/phar-update
This package is abandoned and no longer maintained.
No replacement package was suggested.
Integrates Phar Update to Symfony Console.
Maintainers
v2.2.0
2019-12-12 13:45 UTC
Requires
- php: >=5.3.3
- symfony/console: ~2.7|~3.0|~4.0|~5.0
Requires (Dev)
- mikey179/vfsstream: 1.1.0
- phpunit/phpunit: 3.7.*
- symfony/process: ~2.7|~3.0|~4.0|~5.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 9ad07422f2cd43a1382ee8e134bdcd3a374848e3
- Kevin Herrera <kevin.woop@herrera.io>
- Anton Medvedev <anton.woop@medv.io>
README
Summary
Uses the Phar Update library to:
- check for newer versions of the Phar
- download the Phar
- verify download by SHA1 checksum, and public key if available
- replace running Phar with downloaded update
Installation
Add it to your list of Composer dependencies:
$ composer require deployer/phar-update
Usage
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);
