-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 1.24 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
{
"name": "kitsunet/composer-install-testing",
"description": "Best practice example distribution for Neos",
"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://github.com/neos/neos-development-collection/issues",
"docs": "http://neos.readthedocs.io/",
"source": "https://github.com/neos/neos-development-distribution"
},
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"require": {
"test/site": "@dev"
},
"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"
},
"repositories": {
"distribution": {
"type": "path",
"url": "./DistributionPackages/*"
}
}
}