Download the PHP package biggo6/laravel-updater without Composer
On this page you can find all versions of the php package biggo6/laravel-updater. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download biggo6/laravel-updater
More information about biggo6/laravel-updater
Files in biggo6/laravel-updater
Package laravel-updater
Short Description A Laravel 5.2+ self updater package.
License MIT
Informations about the package laravel-updater
Laravel 4.2 Self-Updater
This is a Laravel 4.2 package which supports self-update of Laravel applications. You only need a remote webserver which holds the update files.
Laravel 5.1+ Self-Updater
Go to this https://github.com/thetodd/laravel-updater
Requirements
Installation
a) Run
b) Add service provider to /config/app.php file.
c) Create a version.json file in the root directory.
d) Publish config file. (optionally)
Usage
This package registers some new routes.
You can check if there is a new application version when you type self-updater/check
in your web browser after the base url of your application.
You can automatically update your application with the url self-updater/update
.
Customizing Views
This command will move the package's views into the app/views/packages
directory. If this directory doesn't already exist, it will be created when you run the command. Once the views have been published, you may tweak them to your liking! The exported views will automatically take precedence over the package's own view files.
Remote version file
The remote version file holds the up to date version of the application. It also defines where to find the update package.
Configuration
If you published the configuration fiels with the config:publish
artisan command, you can
specify your own remote server.
You can easily set this parameter in . The URI should not have a trailing slash and the remote_version.json file on the webserver must be accessible.