-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json.ci
33 lines (33 loc) · 983 Bytes
/
composer.json.ci
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
{
"name": "t3n/test-setup",
"description": "Test setup for flow packages",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"require": {
"neos/neos": "^5.1",
"neos/nodetypes": "^5.1",
"neos/demo": "^6.1",
"neos/buildessentials": "^6.1",
"t3n/neos-debug": "@dev",
"t3n/coding-standard": "~1.1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "~3.5",
"phpunit/phpunit": "~8.5",
"mikey179/vfsstream": "~1.6"
},
"repositories": {
"srcPackage": {
"type": "path",
"url": "./neos-debug"
}
},
"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"
}
}