forked from in2code-de/luxletter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.72 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
{
"name": "in2code/luxletter",
"description": "Free newsletter extension for TYPO3 for an individual email marketing. A lot of analytics and modern concepts. Works with and without EXT:lux.",
"keywords": [
"typo3",
"newsletter",
"marketing",
"direct_mail"
],
"homepage": "https://github.com/in2code-de/luxletter",
"authors": [
{
"name": "Alex Kellner",
"email": "[email protected]"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": ">=9.5.0 <=10.0.0",
"ext-json": "*",
"ext-dom": "*",
"ext-libxml": "*"
},
"replace": {
"typo3-ter/luxletter": "self.version"
},
"suggest": {
"in2code/lux": "Marketing automation for TYPO3"
},
"autoload": {
"psr-4": {
"In2code\\Luxletter\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"In2code\\Luxletter\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"require-dev": {
"typo3/cms-core": ">=9.5.0 <9.6.0",
"nimut/testing-framework": "*",
"mikey179/vfsStream": "*",
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "*",
"phpmd/phpmd": "@stable"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/luxletter ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/luxletter"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}