Created
August 19, 2015 15:02
-
-
Save kdambekalns/46e0e33b73af2b2db4a0 to your computer and use it in GitHub Desktop.
Minimum composer.json for a Neos 2.0.* project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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