-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
31 lines (31 loc) · 1.04 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "robertlemke/example-bookshop-distribution",
"description": "Distribution for the Bookshop Example",
"license": "MIT",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"require": {
"neos/flow": "~4.0.0",
"neos/party": "~4.0.0",
"neos/media": "3.0.x-dev as 3.0.1",
"neos/twitter-bootstrap": "~3.0.0"
},
"require-dev": {
"neos/kickstarter": "~4.0.0",
"neos/buildessentials": "~4.0.0",
"neos/behat": "dev-master",
"phpunit/phpunit": "~5.4.0",
"mikey179/vfsstream": "~1.6"
},
"suggest": {
"ext-pdo_sqlite": "For running functional tests out-of-the-box this is required"
},
"scripts": {
"post-update-cmd": "Neos\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-install-cmd": "Neos\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-package-update": "Neos\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall",
"post-package-install": "Neos\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall"
}
}