-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
37 lines (37 loc) · 1.16 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
{
"name": "neos/idneosio-distribution",
"description" : "Distribution for id.neos.io",
"license": "GPL-3.0+",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin",
"allow-plugins": {
"neos/composer-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.3",
"neos/idneosio": "*",
"flownative/google-cloudstorage": "^5.3"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"repositories": [
{
"type": "path",
"url": "DistributionPackages/*"
}
],
"suggest": {
"ext-pdo_sqlite": "For running functional tests out-of-the-box this is required"
},
"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"
}
}