-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
composer.json
43 lines (41 loc) · 1.26 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
{
"name": "neos/test-distribution",
"description": "Neos Ui test distribution",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin",
"allow-plugins": {
"neos/composer-plugin": true,
"cweagans/composer-patches": true
}
},
"minimum-stability": "dev",
"require": {
"neos/neos-development-collection": "8.3.x-dev",
"neos/neos-ui": "8.3.x-dev",
"neos/fusion-afx": "*",
"neos/test-site": "@dev",
"neos/test-nodetypes": "@dev",
"cweagans/composer-patches": "^1.7.3"
},
"extra": {
"patches": {
}
},
"require-dev": {
"neos/buildessentials": "@dev",
"phpunit/phpunit": "^8.1"
},
"repositories": {
"distribution": {
"type": "path",
"url": "./DistributionPackages/*"
}
},
"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"
}
}