-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
104 lines (96 loc) · 3.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sitegeist/neos-base-distribution",
"description": "Sitegeist Neos Base Distribution",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin",
"platform": {
"php": "8.1"
},
"allow-plugins": {
"neos/composer-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"neos/neos": "~8.3.0",
"neos/neos-ui": "~8.3.0",
"neos/seo": "^3.0",
"neos/redirecthandler-ui": "^2.4",
"neos/redirecthandler-neosadapter": "^4.3",
"neos/redirecthandler-databasestorage": "^5.0",
"packagefactory/atomicfusion-proptypes": "^2.0",
"packagefactory/atomicfusion-classnames": "^1.0",
"flowpack/nodetemplates": "^1.3",
"sitegeist/klarschiff": "^3.0",
"sitegeist/monocle": "^7.6",
"sitegeist/chitchat": "~1.2",
"sitegeist/kaleidoscope": "^6.5",
"sitegeist/csvpo": "^1.5",
"sitegeist/stampede": "^1.5",
"sitegeist/archaeopteryx": "^1.0",
"sitegeist/iconoclasm": "^2.0",
"sitegeist/noderobis": "~1.1",
"sitegeist/pyranodis": "~1.0",
"vendor/site": "*",
"vendor/wheelinventor": "*",
"vendor/supportwheelinventor": "*"
},
"require-dev": {
"neos/buildessentials": "^8.3.x-dev",
"mikey179/vfsstream": "^1.6.10",
"phpunit/phpunit": "~9.1",
"symfony/css-selector": "~2.0",
"neos/behat": "^8.0",
"deployer/deployer": "^7.0",
"editorconfig-checker/editorconfig-checker": "^10.0",
"squizlabs/php_codesniffer": "^3.4",
"sitegeist/magicwand": "^4.4",
"sitegeist/chantalle": "^1.0",
"sitegeist/noderobis": "^1.0",
"phpstan/phpstan": "~1.8"
},
"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",
"post-create-project-cmd": "ddev config --project-name=`basename \"$PWD\"`",
"flush": [
"./flow flow:cache:flush --force",
"./flow flow:package:rescan",
"./flow doctrine:migrate",
"./flow resource:publish"
],
"cleanup:php": [
"rm -rf ./Data/Temporary/*",
"rm -rf ./Packages/*",
"rm -rf ./bin/*"
],
"lint:editorconfig": "ec",
"lint:phpcs": "phpcs --colors --standard=PSR2 ./DistributionPackages/*/Classes",
"lint:phpstan": "phpstan analyse",
"lint": [
"@lint:phpcs",
"@lint:phpstan"
],
"clone": [
"./flow clone:list",
"./flow clone:preset"
],
"deploy:develop": "dep deploy develop -vv",
"deploy:staging": "dep deploy staging -vv",
"deploy:master": "dep deploy master -vv",
"test": "echo \"No tests yet.\""
},
"repositories": {
"local": {
"type": "path",
"url": "./DistributionPackages/*"
}
}
}