Download the PHP package cfwme/selfupdate without Composer
On this page you can find all versions of the php package cfwme/selfupdate. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cfwme/selfupdate
More information about cfwme/selfupdate
Files in cfwme/selfupdate
Package selfupdate
Short Description Basic extension for the Yii2 project self-update from VCS
License BSD-3-Clause
Informations about the package selfupdate
Project Self Update Extension for Yii 2
This extension allows automatic project updating in case its source code is maintained via version control system, such as GIT or Mercurial. Such update includes following steps:
- check if there are any changes at VSC remote repository
- link web server web directories to the stubs, while project update is running
- apply remote VCS changes
- update 'vendor' directory via Composer
- clear application cache and temporary directories
- perform additional actions, like applying database migrations
- link web server web directories to the project web directories, once update is complete
- notify developer(s) about update result via email
Note: this solution is very basic and may not suite for the complex project update workflow. You may consider usage of more sophisticated tools like Phing. However, this extension may be used as a part of such solution.
For license information check the LICENSE-file.
Requirements
This extension requires Linux OS.
Installation
The preferred way to install this extension is through composer.
Either run
or add
to the require section of your composer.json.
Usage
This extension provides special console controller [[yii2tech\selfupdate\SelfUpdateController]], which allows automatic updating of
the project, if its source code is maintained via version control system.
In order to enable this controller in your project, you should add it to your console application controllerMap
at
configuration file:
Now you should able to use 'self-update' command via console:
Project preparation
In order to use 'self-update' command, you should perform several preparations in your project, allowing certain shell commands to be executed in non-interactive (without user prompt) mode.
First of all, you should clone (checkout) your project from version control system and switch project working copy to the branch, which should be used at this particular server. Using GIT this actions can be performed via following commands:
Attention: you need to configure your VCS (or at least your project working copy) in the way interacting with remote repository does NOT require user prompt, like input of username or password! This can be achieved using authentication keys or 'remember password' feature.
Then you should make project operational performing all necessary actions for its initial deployment, like running 'composer install', creating necessary directories and so on.
Using self-update command
Once project is setup you need to create a configuration for its updating. This can be done using 'self-update/config' command:
This will generate configuration file, which should be manually adjusted depending on the particular project structure and server environment. For the common project such configuration file may look like following:
Please refer to [[\yii2tech\selfupdate\SelfUpdateController]] for particular option information.
Once you have made all necessary adjustments at configuration file, you can run 'self-update/perform' command with it:
You may setup default configuration file name inside the controllerMap
specification via [[yii2tech\selfupdate\SelfUpdateController::configFile]]:
Then invocation of the self-update command will be much more clear:
Note: it is not necessary to create a separated configuration file: you can configure all necessary fields of [[yii2tech\selfupdate\SelfUpdateController]] inside
controllerMap
specification, but such approach is not recommended.
Self Update Workflow
While running, [[yii2tech\selfupdate\SelfUpdateController]] performs following steps:
- check if there are any changes at VSC remote repository
- link web server web directories to the stubs, while project update is running
- apply remote VCS changes
- update 'vendor' directory via Composer
- clear application cache and temporary directories
- perform additional actions, like applying database migrations
- link web server web directories to the project web directories, once update is complete
- notify developer(s) about update result via email
At the first stage there is a check for any changes in the remote repository. If there is no changes in remote repository for the current project VCS working copy branch, no further actions will be performed!
If remote changes detected, the symbolic links pointing to the project '@web' directory will be switched to another directory, which should contain a 'stub' - some static HTML page, which says something like 'Application is under the maintenance, please check again later'. Although, usage of such stub it is up to you, it is recommended, because actual project update may take significant time before being complete. Project web directory will be linked back instead of stub, only after all update actions are performed.
During update itself VCS remote changes are applied, vendor
directory is updated via Composer, specified temporary
directories will be cleared and cache flushed.
Note: in order for Composer be able to apply necessary changes, the 'composer.lock' file should be tracked by version control system!