-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
61 lines (61 loc) · 1.63 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
{
"name": "r3h6/mail-spool",
"type": "typo3-cms-extension",
"description": "Integrates swiftmailer spool transport for TYPO3.",
"keywords": [
"TYPO3",
"extension",
"mail",
"spool",
"swiftmailer"
],
"homepage": "https://github.com/r3h6/TYPO3.EXT.mail_spool",
"support": {
"issues": "https://github.com/r3h6/TYPO3.EXT.mail_spool/issues"
},
"license": "GPL-3.0+",
"require": {
"typo3/cms": "^6.2.14 || ^7.6.0 || ^8.7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0",
"nimut/testing-framework": "^1.0"
},
"autoload": {
"psr-4": {
"R3H6\\MailSpool\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"R3H6\\MailSpool\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"replace": {
"mail_spool": "self.version",
"typo3-ter/mail-spool": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/mail_spool ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/mail_spool"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/web"
}
}
}