forked from neos/flow-development-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
190 lines (190 loc) · 6.75 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "neos/flow-development-collection",
"description": "Flow packages in a joined repository for pull requests.",
"license": [
"MIT"
],
"type": "neos-package-collection",
"scripts": {
"test:behavioral": [
"../../flow doctrine:migrate --quiet",
"../../bin/behat -f progress -c Neos.Flow/Tests/Behavior/behat.yml"
],
"lint:phpstan": "../../bin/phpstan analyse",
"lint": [
"@lint:phpstan"
]
},
"require": {
"behat/behat": "^3.10",
"php": "^8.2",
"psr/simple-cache": "^2.0 || ^3.0",
"psr/cache": "^2.0 || ^3.0",
"psr/log": "^2.0 || ^3.0",
"ext-zlib": "*",
"ext-SPL": "*",
"ext-json": "*",
"ext-reflection": "*",
"ext-xml": "*",
"ext-xmlreader": "*",
"neos/composer-plugin": "^2.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"psr/container": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-client": "^1.0",
"ramsey/uuid": "^3.0 || ^4.0",
"laminas/laminas-code": "^4.10",
"doctrine/orm": "^2.14.0",
"doctrine/migrations": "^3.3",
"doctrine/dbal": "^3.1.4",
"doctrine/common": "^3.1",
"doctrine/annotations": "^1.13",
"symfony/yaml": "^5.1||^6.0",
"symfony/dom-crawler": "^5.1||^6.0",
"symfony/console": "^5.1||^6.0",
"composer/composer": "^2.7.7",
"egulias/email-validator": "^2.1.17 || ^3.0",
"typo3fluid/fluid": "^2.8.0",
"guzzlehttp/psr7": "^1.8.4 || ^2.1.1",
"ext-mbstring": "*"
},
"replace": {
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-mbstring": "*",
"neos/cache": "self.version",
"neos/eel": "self.version",
"neos/error-messages": "self.version",
"neos/flow-log": "self.version",
"neos/flow": "self.version",
"neos/fluid-adaptor": "self.version",
"neos/http-factories": "self.version",
"neos/kickstarter": "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-pdo": "self.version",
"neos/utility-schema": "self.version",
"neos/utility-unicode": "self.version"
},
"suggest": {
"ext-memcache": "If you have a memcache server and want to use it for caching.",
"ext-memcached": "Alternative, if you have a memcache server and want to use it for caching.",
"ext-redis": "If you have a redis server and want to use it for caching.",
"ext-igbinary": "The igbinary extension is a replacement for the standard PHP serializer",
"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"
},
"autoload": {
"psr-4": {
"Neos\\Cache\\": [
"Neos.Cache/Classes"
],
"Neos\\Eel\\": [
"Neos.Eel/Classes"
],
"Neos\\Error\\Messages\\": [
"Neos.Error.Messages/Classes"
],
"Neos\\Flow\\Log\\": [
"Neos.Flow.Log/Classes"
],
"Neos\\Flow\\": [
"Neos.Flow/Classes"
],
"Neos\\Flow\\Core\\Migrations\\": [
"Neos.Flow/Scripts/Migrations"
],
"Neos\\FluidAdaptor\\": [
"Neos.FluidAdaptor/Classes/"
],
"Neos\\Http\\Factories\\": [
"Neos.Http.Factories/Classes"
],
"Neos\\Kickstarter\\": [
"Neos.Kickstarter/Classes"
],
"Neos\\Utility\\": [
"Neos.Utility.Arrays/Classes",
"Neos.Utility.Files/Classes",
"Neos.Utility.MediaTypes/Classes",
"Neos.Utility.ObjectHandling/Classes",
"Neos.Utility.OpcodeCache/Classes",
"Neos.Utility.Pdo/Classes",
"Neos.Utility.Schema/Classes"
],
"Neos\\Utility\\Unicode\\": [
"Neos.Utility.Unicode/Classes"
]
}
},
"extra": {
"installer-name": "Framework",
"neos": {
"warning": "AUTOGENERATED FILE, ONLY MODIFY THE .composer.json IN THIS DIRECTORY AND RUN THE COMPOSER MANIFEST MERGER SCRIPT PROVIDED BY THE BUILD ESSENTIALS PACKAGE."
}
},
"require-dev": {
"mikey179/vfsstream": "^1.6.10",
"phpunit/phpunit": "~9.1"
},
"provide": {
"psr/cache-implementation": "2.0.0 || 3.0.0",
"psr/simple-cache-implementation": "2.0.0 || 3.0.0",
"psr/log-implementation": "2.0.0 || 3.0.0"
},
"autoload-dev": {
"psr-4": {
"Neos\\Cache\\Tests\\": [
"Neos.Cache/Tests"
],
"Neos\\Eel\\Tests\\": [
"Neos.Eel/Classes"
],
"Neos\\Error\\Messages\\Tests\\": [
"Neos.Error.Messages/Tests"
],
"Neos\\Flow\\Log\\Tests\\": [
"Neos.Flow.Log/Tests"
],
"Neos\\Flow\\Tests\\": [
"Neos.Flow/Tests"
],
"Neos\\Http\\Factories\\Tests\\": [
"Neos.Http.Factories/Tests"
],
"Neos\\Kickstarter\\Tests\\": [
"Neos.Kickstarter/Tests"
],
"Neos\\Utility\\Arrays\\Tests\\": [
"Neos.Utility.Arrays/Tests"
],
"Neos\\Flow\\Utility\\Files\\Tests\\": [
"Neos.Utility.Files/Tests"
],
"Neos\\Utility\\MediaTypes\\Tests\\": [
"Neos.Utility.MediaTypes/Tests"
],
"Neos\\Utility\\ObjectHandling\\Tests\\": [
"Neos.Utility.ObjectHandling/Tests"
],
"Neos\\Flow\\Utility\\Schema\\Tests\\": [
"Neos.Utility.Schema/Tests"
],
"Neos\\Flow\\Utility\\Unicode\\Tests\\": [
"Neos.Utility.Unicode/Tests"
]
}
}
}