-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.69 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
{
"name": "b13/form-custom-templates",
"type": "typo3-cms-extension",
"description" : "Enable custom templates for emails sent using TYPO3\\'s form framework email finishers",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"B13\\FormCustomTemplates\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "form_custom_templates",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"require": {
"php": "^8.1",
"typo3/cms-form": "^11.5 || ^12.3",
"typo3/cms-frontend": "^11.5 || ^12.3",
"typo3/cms-install": "^11.5 || ^12.3",
"typo3/cms-filelist": "^11.5 || ^12.3",
"typo3/cms-core": "^11.5 || ^12.3"
},
"require-dev": {
"codeception/codeception": "^5.1",
"codeception/module-asserts": "^3.0.0",
"codeception/module-webdriver": "^4.0.1",
"typo3/testing-framework": "^7.0",
"typo3/coding-standards": "^v0.7.1",
"phpstan/phpstan": "^1.10.62",
"typo3/cms-composer-installers": "^5.0",
"typo3/cms-beuser": "*",
"typo3/cms-extensionmanager": "*",
"typo3/cms-setup": "*",
"typo3/cms-tstemplate": "*",
"typo3/cms-fluid-styled-content": "*"
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare",
"if [ ! -e .Build/Web/vendor ]; then cd .Build/Web && ln -s ../vendor && cd -; fi"
]
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"autoload-dev": {
"psr-4": {
"B13\\FormCustomTemplates\\Tests\\": "Tests/"
}
}
}