consolidation / self-update
Provides a self:update command for Symfony Console applications.
Installs: 24 231 262
Dependents: 13
Suggesters: 0
Security: 0
Stars: 89
Watchers: 3
Forks: 4
Open Issues: 6
Requires
- php: >=5.5.0
- composer/semver: ^3.2
- symfony/console: ^2.8 || ^3 || ^4 || ^5 || ^6
- symfony/filesystem: ^2.5 || ^3 || ^4 || ^5 || ^6
This package is auto-updated.
Last update: 2023-01-16 16:27:52 UTC
README
Symfony Console command to update a phar in place.
Usage
To use the self:update command, instantiate it with the name of the application, its current version, and the full name of the GitHub project.
$cmd = new SelfUpdateCommand('MyAppName', '1.0.0', 'org/my-app');
$app->add($cmd);