-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.25 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
{
"name": "typo3-incubator/eventsourcing-bundle",
"license": "GPL",
"authors": [
{
"name": "Oliver Hader",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:TYPO3Incubator/event_sourcing.git"
},
{
"type": "vcs",
"url": "[email protected]:TYPO3Incubator/data_handling.git"
},
{
"type": "vcs",
"url": "[email protected]:TYPO3Incubator/bank_account_example.git"
}
],
"require": {
"php": "^7.2",
"typo3/cms-core": "^8.7",
"typo3/cms-about": "^8.7",
"typo3/cms-backend": "^8.7",
"typo3/cms-belog": "^8.7",
"typo3/cms-beuser": "^8.7",
"typo3/cms-extbase": "^8.7",
"typo3/cms-extensionmanager": "^8.7",
"typo3/cms-filelist": "^8.7",
"typo3/cms-fluid": "^8.7",
"typo3/cms-fluid-styled-content": "^8.7",
"typo3/cms-form": "^8.7",
"typo3/cms-frontend": "^8.7",
"typo3/cms-impexp": "^8.7",
"typo3/cms-info": "^8.7",
"typo3/cms-install": "^8.7",
"typo3/cms-lowlevel": "^8.7",
"typo3/cms-opendocs": "^8.7",
"typo3/cms-recordlist": "^8.7",
"typo3/cms-recycler": "^8.7",
"typo3/cms-reports": "^8.7",
"typo3/cms-rte-ckeditor": "^8.7",
"typo3/cms-scheduler": "^8.7",
"typo3/cms-setup": "^8.7",
"typo3/cms-tstemplate": "^8.7",
"typo3/cms-viewpage": "^8.7",
"typo3/cms-introduction": "^3.0",
"typo3/cms-event-sourcing": "^0.2.4",
"typo3/cms-data-handling": "^0.2.4",
"h4ck3r31/bank-account-example": "^0.2.2",
"helhum/typo3-console": "^5.8",
"typo3/cms-workspaces": "^8.7"
},
"require-dev": {
"phpunit/phpunit": "^5.4",
"mikey179/vfsstream": "~1.6.0"
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Core\\Tests\\": "public/typo3/sysext/core/Tests/"
}
},
"scripts": {
"post-install-cmd": [
"typo3cms extension:setupactive"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "public"
}
}
}