Skip to content

Instantly share code, notes, and snippets.

@kdambekalns
Created August 19, 2015 15:02
Show Gist options
  • Save kdambekalns/46e0e33b73af2b2db4a0 to your computer and use it in GitHub Desktop.
Save kdambekalns/46e0e33b73af2b2db4a0 to your computer and use it in GitHub Desktop.
Minimum composer.json for a Neos 2.0.* project
{
"name": "amce/site-distribution",
"description" : "Acme Neos Distribution",
"license": "proprietary",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"require": {
"typo3/neos": "^2.0.0",
"typo3/neos-nodetypes": "^2.0.0"
},
"require-dev": {
"typo3/buildessentials": "^3.0.0",
"mikey179/vfsstream": "1.5.*",
"phpunit/phpunit": "4.6.*",
"flowpack/behat": "^2.0.0"
},
"suggest": {
"ext-pdo_sqlite": "For running functional tests out-of-the-box this is required"
},
"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