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

# Composer Update Guide

## Minor/Major Version Update

Whenever you run composer update, You’ll automatically get the latest version of your purcahsed TYPO3 extension.

<Note>
  If you are still using old-way of composer installation e.g., install extension with :@dev then consider to update with our modern and automated composer-way - just like packagist.org ;) then we highly recommend to follow our “Migration To New Composer” at [https://docs.t3planet.de/en/latest/License/Migration/Composer/Index.html](/en/latest/en/latest/License/Migration/Composer/Index)
</Note>

<Warning>
  Before you start the migration, we recommend taking a backup (code & database) of your TYPO3 instance. During the migration, If any problem occurs, then you can roll back your TYPO3 instance. So, please take a backup now :)
</Warning>

```python theme={"theme":{"light":"github-light","dark":"github-dark"}}
composer update nitsan/EXTENSION-NAME
```

```python theme={"theme":{"light":"github-light","dark":"github-dark"}}
composer dump-autoload
```

```python theme={"theme":{"light":"github-light","dark":"github-dark"}}
vendor/bin/typo3 cache:flush
```

<Warning>
  For EXT:ns\_revolution\_slider, Please don’t forget to follow below step “Make Symlink of Your Assets”.
</Warning>

**For TYPO3 v11 and below**

```python theme={"theme":{"light":"github-light","dark":"github-dark"}}
- rm -rf typo3conf/ext/ns_revolution_slider/vendor/wp/wp-content/uploads
- ln -sf public/fileadmin/revslider/uploads typo3conf/ext/ns_revolution_slider/vendor/wp/wp-content/uploads
```

**For TYPO3 v12 and above**

```python theme={"theme":{"light":"github-light","dark":"github-dark"}}
- rm -rf vendor/nitsan/ns-revolution-slider/Resources/Public/vendor/wp/wp-content/uploads
- ln -sf ../../../../../../../../public/fileadmin/revslider/uploads vendor/nitsan/ns-revolution-slider/Resources/Public/vendor/wp/wp-content/uploads
```
