-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (48 loc) · 1.8 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "neos/neos-base-distribution",
"description": "Neos Base Distribution",
"license": "GPL-3.0+",
"support": {
"email": "[email protected]",
"slack": "http://slack.neos.io/",
"forum": "https://discuss.neos.io/",
"wiki": "https://discuss.neos.io/c/the-neos-project/project-documentation",
"issues": "https://jira.neos.io/browse/NEOS",
"docs": "http://neos.readthedocs.org/",
"source": "https://github.com/neos/neos-base-distribution"
},
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"require": {
"typo3/neos": "~2.2.0",
"typo3/neos-nodetypes": "~2.2.0",
"neos/demo": "~2.2.0",
"typo3/neos-kickstarter": "~2.2.0",
"typo3/neos-seo": "~1.0",
"typo3/setup": "~2.0",
"flowpack/neos-frontendlogin": "~2.0",
"neos/redirecthandler-neosadapter": "~1.0",
"neos/redirecthandler-databasestorage": "~1.0"
},
"require-dev": {
"typo3/buildessentials": "3.2.x-dev",
"mikey179/vfsstream": "~1.6",
"phpunit/phpunit": "~4.8 || ~5.4.0",
"symfony/css-selector": "~2.0",
"flowpack/behat": "dev-master"
},
"replace": {
"typo3/neos-base-distribution": "self.version"
},
"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"
}
}