-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.05 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
{
"name": "neos/contentrepositoryregistry",
"type": "neos-package",
"description": "Global registry for Neos Content Repository instances",
"support": {
"source": "https://github.com/neos/contentrepositoryregistry.git",
"forum": "https://discuss.neos.io/",
"docs": "https://docs.neos.io/"
},
"license": [
"GPL-3.0-or-later"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"neos/flow": "~9.0.0",
"neos/contentrepository-core": "self.version",
"neos/contentrepositoryregistry-storageclient": "self.version",
"neos/contentrepository-structureadjustment": "self.version",
"neos/contentrepository-nodemigration": "self.version",
"symfony/property-access": "^5.4|^6.0",
"psr/clock": "^1"
},
"autoload": {
"psr-4": {
"Neos\\ContentRepositoryRegistry\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Neos\\ContentRepositoryRegistry\\Tests\\": "Tests"
}
}
}