-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.08 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.08 KB
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
{
"name": "friendsoftypo3/visual-editor",
"description": "TYPO3 CMS Visual Editor - brings a modern WYSIWYG editing experience to TYPO3 CMS.",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"keywords": [
"typo3 cms",
"typo3",
"cms",
"core",
"extension",
"visual",
"editor",
"visual editor",
"wysiwyg"
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"typo3/cms-backend": "^13.4.22 || ^14.2.0 || 14.2.x-dev",
"typo3/cms-core": "^13.4.22 || ^14.2.0 || 14.2.x-dev",
"typo3/cms-extbase": "^13.4.22 || ^14.2.0 || 14.2.x-dev",
"typo3/cms-fluid": "^13.4.22 || ^14.2.0 || 14.2.x-dev",
"typo3/cms-frontend": "^13.4.22 || ^14.2.0 || 14.2.x-dev",
"typo3/cms-rte-ckeditor": "^13.4.22 || ^14.2.0 || 14.2.x-dev"
},
"require-dev": {
"b13/container": "^3.2.3",
"pluswerk/grumphp-config": "^10.2.6",
"saschaegerer/phpstan-typo3": "^2.1.1 || ^3.0.1",
"ssch/typo3-rector": "^3.14.1",
"typo3fluid/fluid": "^4.6.0 || 4.6.x-dev || ^5"
},
"suggest": {
"wapplersystems/multisite-belogin": "You should install this extension, if you have multiple domains in your TYPO3 installation."
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\VisualEditor\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "visual_editor"
}
},
"scripts": {
"post-install-cmd": [
"@composer normalize"
],
"post-update-cmd": [
"@composer bump --dev-only",
"@composer normalize"
],
"post-autoload-dump": [
"sh -c 'MAJOR=$(typo3 --version | awk '\\''{split($3, v, \".\"); print v[1]}'\\''); ln -sfn \"phpstan-baseline-${MAJOR}.neon\" phpstan-baseline.neon'"
],
"test:js": "node --test $(find Resources/Public/JavaScript -name \"*.test.js\" | sort)"
}
}