> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firepitcms.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Updating & upgrading

> Update the CMS package

## Updating the package

You can just run `composer update` or `composer update firepit/cms` to update the package.

You must also run `php artisan cms:upgrade` so all new assets and migrations will be run.

If you want to automate this, you can enter this into your composer.json scripts section:

```json theme={null}
    "scripts": {
        ...
        "post-update-cmd" : [
            "@php artisan cms:upgrade"
        ],
        ...
    },
```
