This is a Lavalite package that provides update management facility. ## Installation Begin by installing this package through Composer. Edit your project's `composer.json` file to require `litecms/update`. "litecms/update": "dev-master" Next, update Composer from the Terminal: composer update Once this operation completes execute below cammnds in command line to finalize installation. ```php Litecms\Update\Providers\UpdateServiceProvider::class, ``` And also add it to alias ```php 'Update' => Litecms\Update\Facades\Update::class, ``` Use the below commands for publishing Migration and seeds php artisan vendor:publish --provider="Litecms\Update\Providers\UpdateServiceProvider" --tag="migrations" php artisan vendor:publish --provider="Litecms\Update\Providers\UpdateServiceProvider" --tag="seeds" Configuration php artisan vendor:publish --provider="Litecms\Update\Providers\UpdateServiceProvider" --tag="config" Language files php artisan vendor:publish --provider="Litecms\Update\Providers\UpdateServiceProvider" --tag="lang" View files php artisan vendor:publish --provider="Litecms\Update\Providers\UpdateServiceProvider" --tag="views" Public folders php artisan vendor:publish --provider="Litecms\Update\Providers\UpdateServiceProvider" --tag="public" ## Usage