0

I am trying to install the extension clickstorm seo for TYPO3 9.5

But with the typical composer command "composer require clickstorm/cs_seo" I am only getting the latest version, which is for TYPO3 10.

Is there a way to get the previous version with the composer command?

FelixM
  • 1

1 Answers1

3

You can require a specific version just fine:

composer require clickstorm/cs_seo ^4.3

You can see the latest version compatible to TYPO3 by checking the package site on Packagist.

Mathias Brodala
  • 5,905
  • 13
  • 30