forked from neos/flow-development-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.61 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
{
"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-zlib": "*",
"ext-SPL": "*",
"ext-json": ">=1.2.0",
"ext-mbstring": "*",
"ext-reflection": "*",
"ramsey/uuid": "^3.0.0",
"doctrine/orm": "2.4.*",
"doctrine/migrations": "1.0.*",
"symfony/yaml": "2.5.*",
"symfony/dom-crawler": "2.5.*",
"symfony/console": "2.*",
"neos/composer-plugin": "^1.0.1"
},
"replace": {
"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\\Eel": "TYPO3.Eel/Classes",
"TYPO3\\Flow": "TYPO3.Flow/Classes",
"TYPO3\\Fluid": "TYPO3.Fluid/Classes",
"TYPO3\\Kickstart": "TYPO3.Kickstart/Classes"
}
},
"extra": {
"installer-name": "Framework",
"neos": {
"warning": "AUTOGENERATED FILE, ONLY MODIFY THE .composer.json IN THIS DIRECTORY AND RUN THE MERGE SCRIPT."
}
}
}