Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
more bash
Browse files Browse the repository at this point in the history
  • Loading branch information
franzholz authored May 31, 2024
1 parent 86bfba5 commit e63801e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Documentation/UpgradingExtensions/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ Upgrading extensions
List extensions
---------------

Like TYPO3's core, extensions are also composer packages. The `composer info` command will list all
Like TYPO3's core, extensions are also composer packages. The :bash:`composer info` command will list all
extensions that are currently installed including their name and current version number.

Check for updates
-----------------

To check if any extension upgrades are available, `composer outdated` can be used to display a list
To check if any extension upgrades are available, :bash:`composer outdated` can be used to display a list
of packages that have updates along with their new version number.

Upgrade an extension (minor)
----------------------------

Minor upgrades of an extension can be done with the composer command `composer update vendor/packagename`.
Minor upgrades of an extension can be done with the composer command :bash:`composer update vendor/packagename`.

Upgrade an extension (major)
----------------------------

Major upgrades of an extension can be done with the composer command `composer require vendor/packagename:<new version>`.
Major upgrades of an extension can be done with the composer command :bash:`composer require vendor/packagename:<new version>`.

0 comments on commit e63801e

Please sign in to comment.