-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
109 lines (109 loc) · 2.98 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
{
"name": "in2code/lux",
"description": "Living User eXperience - LUX - the Marketing Automation tool for TYPO3.",
"keywords": [
"typo3",
"marketing",
"automation",
"marketing"
],
"homepage": "https://github.com/in2code-de/lux",
"authors": [
{
"name": "Florian Froidevaux",
"email": "[email protected]",
"role": "Product owner",
"homepage": "https://www.in2code.de"
},
{
"name": "Alex Kellner",
"email": "[email protected]",
"role": "Technical owner",
"homepage": "https://www.in2code.de"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.1.0",
"ext-json": "*",
"ext-pdo": "*",
"typo3/cms-core": "^12.4 || ^13.3",
"symfony/expression-language": ">=4.0",
"buzz/which-browser-parser": "^2.1",
"in2code/bing": "^1.1"
},
"replace": {
"typo3-ter/lux": "self.version"
},
"suggest": {
"typo3/cms-dashboard": "*"
},
"require-dev": {
"typo3/cms-core": "^13.3",
"typo3/cms-extbase": "^13.3",
"typo3/cms-extensionmanager": "^13.3",
"typo3/cms-felogin": "^13.3",
"typo3/cms-filelist": "^13.3",
"typo3/cms-fluid-styled-content": "^13.3",
"typo3/cms-frontend": "^13.3",
"typo3/cms-info": "^13.3",
"typo3/cms-install": "^13.3",
"typo3/cms-recordlist": "^13.3",
"typo3/cms-rte-ckeditor": "^13.3",
"typo3/cms-scheduler": "^13.3",
"typo3/cms-setup": "^13.3",
"typo3/cms-t3editor": "^13.3",
"typo3/cms-tstemplate": "^13.3",
"typo3/cms-lowlevel": "^13.3",
"typo3/cms-adminpanel": "^13.3",
"typo3/cms-belog": "^13.3",
"typo3/cms-beuser": "^13.3",
"typo3/cms-dashboard": "^13.3",
"typo3/testing-framework": "^8.2",
"symfony/config": ">6.2.0",
"mikey179/vfsstream": "^1.6",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8",
"friendsofphp/php-cs-fixer": "^3.10",
"helmich/typo3-typoscript-lint": "^3.1",
"helhum/typo3-console": "^8.2",
"georgringer/news": "^12.0",
"typo3/cms-indexed-search": "^13.4",
"typo3/cms-form": "^13.4"
},
"autoload": {
"psr-4": {
"In2code\\Lux\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"In2code\\Lux\\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/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"test:php:cs": "php-cs-fixer fix --dry-run --config=.project/tests/.php-cs-fixer.php --diff",
"test:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"test:ts:lint": "typoscript-lint -c .project/tests/typoscript-lint.yml --fail-on-warnings",
"test:unit": "phpunit -c phpunit.xml.dist"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public",
"extension-key": "lux",
"ignore-as-root": false
}
}
}