# Upgrading

## Upgrading 1.4 to 1.5

### Update your Composer.json

To update to the latest version inside of your composer.json file make sure to update the version of Voyager inside the require declaration of your composer.json to:

`tcg/voyager": "1.5.*`

And then run `composer update`

### Removed hooks

Version 1.5 removes the hooks functionality.\
If you use any hooks, either skip this release or convert them to regular composer packages.\
Another way is to disable ssl verification in your `composer.json`:

```
"repositories": {
    "hooks": {
        "type": "composer",
        "url": "https://larapack.io",
        "options": {
            "ssl": {
                "verify_peer": false
            }
        }
    }
}
```

If you do not use any hooks, you don't have to take any actions!

### Troubleshooting

Be sure to ask us on our slack channel if you are experiencing any issues and we will try and assist. Thanks.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://voyager-docs.devdojo.com/1.5/getting-started/upgrading.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
