-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 1.62 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
{
"name": "sudhaus7/fe-data-history",
"description": "Log the changed data in frontend mode",
"type": "typo3-cms-extension",
"license": "MIT",
"authors": [
{
"name": "Markus Hofmann",
"role": "Developer",
"email": "[email protected]"
},
{
"name": "Frank Berger",
"role": "Developer",
"email": "[email protected]"
},
{
"name": "Daniel Simon",
"role": "Developer",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "path",
"url": "Tests/packages/*"
}
],
"autoload": {
"psr-4": {
"SUDHAUS7\\FeDataHistory\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"SUDHAUS7\\FeDataHistory\\Tests\\": "Tests/"
}
},
"require": {
"php": ">=7.4",
"typo3/cms-core": "^11.5 | ^12.4",
"typo3/cms-backend": "11.5 | ^12.4",
"typo3/cms-extbase": "11.5 | ^12.4",
"typo3/cms-beuser": "11.5 | ^12.4",
"typo3/cms-felogin": "11.5 | ^12.4"
},
"require-dev": {
"typo3/cms-fluid-styled-content": "12.4.*",
"typo3/cms-tstemplate": "12.4.*",
"typo3/cms-t3editor": "12.4.*",
"phpstan/phpstan": "*",
"typo3/cms-lowlevel": "12.4.*",
"codeception/codeception": "*",
"codeception/phpbuiltinserver": "*",
"helhum/typo3-console": "*",
"workshop/blog": "@dev"
},
"extra": {
"typo3/cms": {
"extension-key": "fe_data_history",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/fe_data_history ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/fe_data_history",
"vendor/bin/typo3 extension:setup"
]
}
}