Chatify
v1.3.x
v1.3.x
  • Introduction
  • Installation
  • Configurations
  • Customizations
  • APIs
  • Upgrading Chatify
  • Notes
  • Change Log
  • Github
Powered by GitBook
On this page

Was this helpful?

Upgrading Chatify

PreviousAPIsNextNotes

Last updated 3 years ago

Was this helpful?

When upgrading to a new version of Chatify, it's important that you carefully review .

In addition, when upgrading to any new Chatify version, you should re-publish Chatify's assets:

php artisan chatify:publish

To keep the assets up-to-date and avoid issues in future updates, you may add the chatify:publish command to the post-update-cmd scripts in your application's composer.json file:

composer.json
{
    "scripts": {
        "post-update-cmd": [
            "@php artisan chatify:publish --ansi"
        ]
    }
}
the upgrade guide