-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
68 lines (68 loc) · 2.6 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
{
"name": "neos/flow-development-distribution",
"description": "Flow Development Distribution",
"license": "MIT",
"support": {
"email": "hello@neos.io",
"slack": "https://slack.neos.io/",
"forum": "https://discuss.neos.io/",
"wiki": "https://discuss.neos.io/c/the-neos-project/project-documentation",
"issues": "https://github.com/neos/flow-development-collection/issues",
"docs": "https://flowframework.readthedocs.io/",
"source": "https://github.com/neos/flow-development-distribution"
},
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin",
"preferred-install": {
"neos/*": "source"
},
"allow-plugins": {
"neos/composer-plugin": true
}
},
"require": {
"neos/flow-development-collection": "8.3.x-dev",
"neos/welcome": "8.3.x-dev",
"phpunit/phpunit": "~9.6",
"mikey179/vfsstream": "^1.6.10",
"phpstan/phpstan": "^1.10",
"neos/flow": "8.3.x-dev",
"neos/cache": "8.3.x-dev",
"neos/eel": "8.3.x-dev",
"neos/error-messages": "8.3.x-dev",
"neos/flow-log": "8.3.x-dev",
"neos/utility-arrays": "8.3.x-dev",
"neos/utility-files": "8.3.x-dev",
"neos/utility-mediatypes": "8.3.x-dev",
"neos/utility-objecthandling": "8.3.x-dev",
"neos/utility-opcodecache": "8.3.x-dev",
"neos/utility-pdo": "8.3.x-dev",
"neos/utility-schema": "8.3.x-dev",
"neos/utility-unicode": "8.3.x-dev",
"neos/http-factories": "8.3.x-dev",
"neos/fluid-adaptor": "8.3.x-dev"
},
"repositories": {
"distributionPackages": {
"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",
"test-unit": "phpunit -c Build/BuildEssentials/PhpUnit/UnitTests.xml",
"test-functional": "phpunit -c Build/BuildEssentials/PhpUnit/FunctionalTests.xml"
},
"require-dev": {
"neos/kickstarter": "8.3.x-dev",
"neos/buildessentials": "8.3.x-dev",
"neos/behat": "8.3.x-dev"
}
}