-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (52 loc) · 1.84 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
50
51
52
53
{
"name": "m12/site-m12-io",
"description": "M12.io complete website",
"license": "GPL-3.0+",
"authors": [
{
"name": "Ashnita Bali",
"email": "[email protected]",
"role": "Front-end Developer"
},
{
"name": "Marcin Ryzycki",
"email": "[email protected]",
"homepage": "http://m12.io",
"role": "Back-end Developer"
}
],
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"repositories": [
{ "type": "git", "url": "https://github.com/million12/Neos.NodeType.CodeSnippet.git" }
],
"require": {
"neos/flow-development-collection": "3.2.x-dev",
"neos/neos-development-collection": "2.2.3",
"typo3/neos-seo": "~1.0",
"neos/redirecthandler-neosadapter": "~1.0",
"neos/redirecthandler-databasestorage": "~1.0",
"m12/neos-foundation": "dev-master",
"robertlemke/rss": "dev-master",
"m12/neos-nodetype-codesnippet": "dev-master",
"m12/neos-plugin-blog": "dev-master"
},
"require-dev": {
"typo3/buildessentials": "3.2.x-dev",
"mikey179/vfsstream": "~1.6",
"phpunit/phpunit": "~5.2.0",
"symfony/css-selector": "~2.0",
"flowpack/behat": "dev-master"
},
"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"
}
}