forked from neos/flow-development-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
121 lines (121 loc) · 4.06 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
{
"name": "neos/flow-development-collection",
"description": "Flow packages in a joined repository for pull requests.",
"license": [
"MIT"
],
"type": "neos-package-collection",
"require": {
"php": ">=5.5.0",
"ext-mbstring": "*",
"ext-zlib": "*",
"ext-SPL": "*",
"ext-json": ">=1.2.0",
"ext-reflection": "*",
"ramsey/uuid": "^3.0.0",
"paragonie/random_compat": "^1.0",
"doctrine/orm": "~2.4.0",
"doctrine/migrations": "~1.3.0",
"doctrine/dbal": "~2.5.0",
"symfony/yaml": "~2.5.0",
"symfony/dom-crawler": "~2.5.0",
"symfony/console": "~2.0",
"neos/composer-plugin": "^1.0.1"
},
"replace": {
"neos/utility-arrays": "self.version",
"neos/utility-files": "self.version",
"neos/utility-lock": "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",
"typo3/eel": "self.version",
"typo3/flow": "self.version",
"typo3/fluid": "self.version",
"typo3/kickstart": "self.version"
},
"suggest": {
"ext-curl": "To use the \\TYPO3\\Flow\\Http\\Client\\CurlEngine",
"doctrine/data-fixtures": "To manage and execute the loading of data fixtures for the Doctrine ORM or ODM",
"typo3/party": "To make use of basic user handling",
"php-uuid": "For fast generation of UUIDs used in the persistence."
},
"autoload": {
"psr-0": {
"TYPO3\\Flow\\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"
],
"TYPO3\\Flow\\Utility\\Lock": [
"Neos.Utility.Lock/Classes"
],
"TYPO3\\Flow\\Reflection": [
"Neos.Utility.ObjectHandling/Classes"
],
"TYPO3\\Flow\\Utility\\Unicode": [
"Neos.Utility.Unicode/Classes"
],
"TYPO3\\Eel": [
"TYPO3.Eel/Classes"
],
"TYPO3\\Flow": [
"TYPO3.Flow/Classes"
],
"TYPO3\\Fluid": [
"TYPO3.Fluid/Classes"
],
"TYPO3\\Kickstart": [
"TYPO3.Kickstart/Classes"
]
},
"psr-4": {
"TYPO3\\Flow\\Core\\Migrations\\": [
"TYPO3.Flow/Scripts/Migrations"
]
}
},
"extra": {
"installer-name": "Framework",
"neos": {
"warning": "AUTOGENERATED FILE, ONLY MODIFY THE .composer.json IN THIS DIRECTORY AND RUN THE MERGE SCRIPT."
}
},
"require-dev": {
"mikey179/vfsstream": "~1.6",
"phpunit/phpunit": "~4.8 || ~5.2.0",
"doctrine/orm": "~2.4.0"
},
"autoload-dev": {
"psr-4": {
"Neos\\Utility\\Arrays\\Tests\\": [
"Neos.Utility.Arrays/Tests"
],
"TYPO3\\Flow\\Utility\\Files\\Tests\\": [
"Neos.Utility.Files/Tests"
],
"TYPO3\\Flow\\Utility\\Lock\\Tests\\": [
"Neos.Utility.Lock/Tests"
],
"TYPO3\\Flow\\Utility\\MediaTypes\\Tests\\": [
"Neos.Utility.MediaTypes/Tests"
],
"Neos\\Utility\\ObjectHandling\\Tests\\": [
"Neos.Utility.ObjectHandling/Tests"
],
"TYPO3\\Flow\\Utility\\Schema\\Tests\\": [
"Neos.Utility.Schema/Tests"
],
"TYPO3\\Flow\\Utility\\Unicode\\Tests\\": [
"Neos.Utility.Unicode/Tests"
]
}
}
}