Composer

About Composer

Composer is a dependency manager for PHP.

So what it basically does is find packages you have defined to be part of your application (in our case TYPO3). But what if these packages rely on other packages as well? This is where composer jumps in and takes care of keeping all these packages in sync.

Since we use quite some packages (because why would we invent things ourselves that are already there?) composer is an extremely useful tool for us.

Install Composer

Follow the installation instructions from https://getcomposer.org. Afterwards, you should have a working executable composer available.

Verify composer is working:

$ composer --version

Copied!

Composer Commands

Once you have installed Composer, this is the command you should run after you clone the Git source and after every git pull request or switching branches:

composer install
Copied!

But, just follow the setup instructions, it will walk you through the commands in the correct order!

Custom TYPO3 Composer Commands

Some additional composer commands have been added for core development.

Just run:

composer
Copied!

to list them. You will see something like:

gerrit:setup                           Enable all the git hooks needed to make contribution easy
gerrit:setup:commitMessageHook:enable  Enable the commit message hook needed for gerrit
gerrit:setup:preCommitHook:disable     Disable pre commit hook to run some checks locally
gerrit:setup:preCommitHook:enable      Enable pre commit hook to run some checks locally
Copied!