-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
38 lines (37 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
34
35
36
37
38
{
"name": "neos/docs-neos-io-distribution",
"description": "docs.neos.io website distribution",
"license": "GPL-3.0-or-later",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin",
"allow-plugins": {
"neos/composer-plugin": true,
"cweagans/composer-patches": true
}
},
"require": {
"php": "^8.3",
"neos/docs-neos-io": "@dev",
"flownative/google-cloudstorage": "^5.3.0",
"rokka/imagine-vips": "^0.31.0",
"shel/neos-terminal": "^1.0",
"jcupitt/vips": "^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"t3n/neos-debug": "^2.0"
},
"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"
}
}