-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
100 lines (90 loc) · 3.1 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
{
"name": "neos/flow",
"type": "neos-framework",
"description": "Flow Application Framework",
"homepage": "http://flow.neos.io",
"license": ["MIT"],
"require": {
"php": "^8.0",
"ext-zlib": "*",
"ext-SPL": "*",
"ext-json": "*",
"ext-reflection": "*",
"ext-xml": "*",
"ext-xmlreader": "*",
"neos/cache": "self.version",
"neos/eel": "self.version",
"neos/error-messages": "self.version",
"neos/utility-arrays": "self.version",
"neos/utility-files": "self.version",
"neos/utility-mediatypes": "self.version",
"neos/utility-objecthandling": "self.version",
"neos/utility-opcodecache": "self.version",
"neos/utility-schema": "self.version",
"neos/utility-unicode": "self.version",
"neos/flow-log": "self.version",
"neos/http-factories": "self.version",
"neos/utility-pdo": "self.version",
"neos/composer-plugin": "^2.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"psr/container": "^1.0",
"psr/log": "^2.0 || ^3.0",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-client": "^1.0",
"psr/simple-cache": "^2.0 || ^3.0",
"psr/cache": "^2.0 || ^3.0",
"ramsey/uuid": "^3.0 || ^4.0",
"doctrine/orm": "^2.9.3",
"doctrine/migrations": "^3.0",
"doctrine/dbal": "^2.13",
"doctrine/common": "^3.0.3",
"doctrine/annotations": "^1.12",
"symfony/yaml": "^5.1||^6.0",
"symfony/dom-crawler": "^5.1||^6.0",
"symfony/console": "^5.1||^6.0",
"composer/composer": "~2.2.24 || ^2.7.7",
"egulias/email-validator": "^3.0||^4.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.10",
"phpunit/phpunit": "~9.1"
},
"replace": {
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*"
},
"suggest": {
"ext-curl": "To use the \\Neos\\Flow\\Http\\Client\\CurlEngine",
"doctrine/data-fixtures": "To manage and execute the loading of data fixtures for the Doctrine ORM or ODM",
"neos/party": "To make use of basic user handling",
"php-uuid": "For fast generation of UUIDs used in the persistence.",
"neos/fluid-adaptor": "For rendering templates with TYPO3.Fluid",
"ext-igbinary": "The igbinary extension is a replacement for the standard PHP serializer"
},
"autoload": {
"psr-4": {
"Neos\\Flow\\": "Classes",
"Neos\\Flow\\Core\\Migrations\\": "Scripts/Migrations"
}
},
"autoload-dev": {
"psr-4": {
"Neos\\Flow\\Tests\\": "Tests"
}
},
"extra": {
"neos": {
"package-key": "Neos.Flow"
},
"applied-flow-migrations": [
"Neos.Media-20161124233100",
"Neos.Flow-20201003165200"
]
}
}