-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
48 lines (48 loc) · 1.44 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
{
"name": "netresearch/rte-ckeditor-image",
"type": "typo3-cms-extension",
"description": "Image support in CKEditor for the TYPO3 ecosystem",
"homepage": "https://github.com/netresearch/t3x-rte_ckeditor_image",
"license": "AGPL-3.0-or-later",
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"typo3/cms-core": "^12.4",
"typo3/cms-backend": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-rte-ckeditor": "^12.4"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-phpunit": "^1.3",
"squizlabs/php_codesniffer": "^3.7",
"typo3/testing-framework": "^8.0.7",
"phpstan/phpstan-deprecation-rules": "^1.2",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"friendsofphp/php-cs-fixer": "^3.61"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"autoload": {
"psr-4": {
"Netresearch\\RteCKEditorImage\\": "Classes"
}
},
"extra": {
"branch-alias": {
"dev-main": "12.0.x-dev"
},
"typo3/cms": {
"extension-key": "rte_ckeditor_image",
"web-dir": ".Build/Web"
}
}
}