[TYPO3-dev] Set up new TYPO3 project with composer

Hannes Lau office at hanneslau.de
Tue Jun 23 13:17:11 CEST 2015


Hi Philipp!

> Cant i register the typo3 git repository as module, so it will be
> located in /vendor or /Library/Packages

Try to use this in your composer.php
{
	"require": {
		"typo3/cms": "^7.3"
	},
	"replace": {
		"typo3/cms-composer-installers":"*"
	}
}


The "replace" part gets rid of the TYPO3 installers and the cms package 
will be installed in ./vendor/typo3/cms. After that, you can use bash:

mkdir Web
ln -s ../vendor/typo3/cms/typo3/index.php Web/index.php
ln -s ../vendor/typo3/cms/typo3/typo3 Web/typo3

Making "Web" your htdocs root.

Cheers,
Hannes



More information about the TYPO3-dev mailing list