-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.3 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
{
"name": "neos/contentrepository-core",
"type": "library",
"description": "Content repository, specifically made for Neos, but also usable standalone.",
"support": {
"source": "https://github.com/neos/contentrepository-core.git",
"forum": "https://discuss.neos.io/",
"docs": "https://docs.neos.io/"
},
"license": [
"GPL-3.0-or-later"
],
"require": {
"neos/eventstore": "^1",
"neos/eventstore-doctrineadapter": "^1 || ^2",
"php": "^8.2",
"neos/error-messages": "*",
"neos/utility-objecthandling": "*",
"neos/utility-arrays": "*",
"doctrine/dbal": "^3.1.4",
"symfony/serializer": "^6.3",
"psr/clock": "^1",
"behat/transliterator": "~1.0",
"ramsey/uuid": "^3.0 || ^4.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1.5",
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Neos\\ContentRepository\\Core\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Neos\\ContentRepository\\Core\\Tests\\": "Tests"
}
},
"suggest": {
"neos/utility-schema": "Validate NodeType schema."
}
}