Cakephp 4.x for php 7.3

Where can I download the latest version of cakephp for php 7.3 ?
The server I work on comes with php 7.3 and will not be updated before next year, so what can I do ?
And what is the composer code ?
Something like : composer create-project --??? cakephp/app my_app_name ?

The PHP 7.4 requirement came with CakePHP 4.4

So you will have to stay on 4.3 till your server can be upgraded.

composer create-project cakephp/app:4.3.*

It’s ok. Thank you for your help.