Skip to content

Instantly share code, notes, and snippets.

@michaelfeinbier
Created January 19, 2015 13:44
Show Gist options
  • Save michaelfeinbier/24b14c87ea53cbb34d5f to your computer and use it in GitHub Desktop.
Save michaelfeinbier/24b14c87ea53cbb34d5f to your computer and use it in GitHub Desktop.
Composer Setup for typo3-surf-cms
{
"repositories": [
{
"type": "composer",
"url": "http://composer.typo3.org/"
}
],
"name": "…",
"description": "…",
"license": "propiertary",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"require": {
"typo3/cms": "6.2.9",
"typo3-ter/bootstrap-package": "~6.2",
"typo3-ter/fluidcontent": "*",
"etobi/coreapi": "dev-master"
},
"require-dev": {
"typo3/flow": "2.2.*",
"doctrine/migrations": "@dev",
"typo3/surf-cms": "*"
},
"minimum-stability": "dev",
"scripts": {
"post-update-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-install-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-package-update":"TYPO3\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall",
"post-package-install":"TYPO3\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment