-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
111 lines (110 loc) · 2.89 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
{
"name": "porth/mysearch",
"description": "google with your own local search-enginge in the internet. build your own search-robots.",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
},
{
"type": "git",
"url": "https://github.com/FriendsOfTYPO3/extension_builder/"
},
{
"type": "git",
"url": "https://github.com/TYPO3-Console/TYPO3-Console"
},
{
"type": "path",
"url": "./MyExtensions/mysearchext/"
},
{
"type": "path",
"url": "./MyExtensions/mysearchsite/"
}
],
"require": {
"php": ">=7.4.1",
"ext-dom": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-xml": "*",
"elasticsearch/elasticsearch": "^7.0",
"helhum/dotenv-connector": "~3.0.0",
"helhum/typo3-console": "^7.0.2",
"porthd/mysearchext": "^11.1.0|dev-master",
"porthd/mysearchsite": "^11.1.0|dev-master",
"typo3/class-alias-loader": "^1.1.3",
"typo3/cms-composer-installers" : "^3.0.0",
"typo3/cms-about": "^11.5.2",
"typo3/cms-adminpanel": "^11.5.2",
"typo3/cms-backend": "^11.5.0",
"typo3/cms-belog": "^11.5.0",
"typo3/cms-beuser": "^11.5.0",
"typo3/cms-core": "^11.5.0",
"typo3/cms-dashboard": "^11.5.0",
"typo3/cms-extbase": "^11.5.0",
"typo3/cms-extensionmanager": "^11.5.0",
"typo3/cms-felogin": "^11.5.0",
"typo3/cms-filelist": "^11.5.0",
"typo3/cms-fluid": "^11.5.0",
"typo3/cms-fluid-styled-content": "^11.5.0",
"typo3/cms-form": "^11.5.0",
"typo3/cms-frontend": "^11.5.0",
"typo3/cms-impexp": "^11.5.0",
"typo3/cms-info": "^11.5.0",
"typo3/cms-install": "^11.5.0",
"typo3/cms-introduction": "^4.4",
"typo3/cms-linkvalidator": "^11.5.2",
"typo3/cms-lowlevel": "^11.5.2",
"typo3/cms-recordlist": "^11.5.0",
"typo3/cms-recycler": "^11.5.2",
"typo3/cms-redirects": "^11.5.2",
"typo3/cms-reports": "^11.5.2",
"typo3/cms-rte-ckeditor": "^11.5.0",
"typo3/cms-scheduler": "^11.5.2",
"typo3/cms-seo": "^11.5.0",
"typo3/cms-setup": "^11.5.0",
"typo3/cms-sys-note": "^11.5.0",
"typo3/cms-t3editor": "^11.5.0",
"typo3/cms-tstemplate": "^11.5.0",
"typo3/cms-viewpage": "^11.5.0",
"porthd/webhelp": "^11.0.0"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.3",
"codeception/module-webdriver": "^1.4",
"phpunit/phpunit": "~8.5.1"
},
"scripts":{
"typo3-cms-scripts": [
"typo3cms install:fixfolderstructure"
],
"helhum/typo3-console": {
"install-binary": false,
"install-extension-dummy": false
},
"typo3/cms": {
"cms-package-dir": "vendor/typo3/cms",
"web-dir": "public"
},
"helhum/dotenv-connector": {
"env-dir": ".env",
"allow-overrides": true,
"cache-dir": "var/cache"
},
"post-autoload-dump": [
"@typo3-cms-scripts"
]
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"helhum/dotenv-connector": true
}
}
}