-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.84 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"license": "GPL-3.0-or-later",
"type": "project",
"name": "litefyr/project",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin",
"allow-plugins": {
"neos/composer-plugin": true,
"cweagans/composer-patches": true,
"php-http/discovery": true
}
},
"require": {
"php": "^8.3.0",
"neos/neos": "~8.3.0",
"james-heinrich/getid3": "^2.0-beta5",
"cweagans/composer-patches": "^1.7",
"litefyr/distribution": "*",
"litefyr/migrations": "*"
},
"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",
"flush": [
"php flow flow:cache:flush --force",
"php flow flow:package:rescan",
"until php flow doctrine:compileproxies; do sleep 1; done",
"php flow doctrine:migrate",
"php flow resource:publish",
"php flow startup:init"
],
"cleanup:php": [
"rm -rf ./Data/Temporary/*",
"rm -rf ./Packages",
"rm -rf ./Build",
"rm -rf ./bin/*",
"@composer install --no-interaction"
],
"lint": "phpstan analyse"
},
"repositories": [
{
"type": "path",
"url": "DistributionPackages/*",
"options": {
"reference": "none"
}
}
],
"extra": {
"patches-file": "https://raw.githubusercontent.com/Litefyr/Patches/main/patches.json"
}
}