-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.41 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.41 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
{
"name": "brotkrueml/codehighlight",
"description": "Code highlighter for various programming, markup and configuration languages based on PrismJS",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"TYPO3 extension",
"Syntax highlighting",
"Code highlighting"
],
"authors": [
{
"name": "Chris Müller",
"role": "Developer"
}
],
"require": {
"php": ">= 8.2",
"typo3/cms-backend": "^13.4 || ^14.0",
"typo3/cms-core": "^13.4 || ^14.0",
"typo3/cms-fluid": "^13.4 || ^14.0",
"typo3/cms-fluid-styled-content": "^13.4 || ^14.0",
"typo3/cms-frontend": "^13.4 || ^14.0"
},
"require-dev": {
"brotkrueml/coding-standards": "~6.3.0",
"ergebnis/composer-normalize": "~2.48.2",
"phpstan/phpstan": "2.1.32",
"phpunit/phpunit": "^11.5 || ^12.4",
"rector/rector": "2.2.9",
"symfony/yaml": "^7.4"
},
"autoload": {
"psr-4": {
"Brotkrueml\\CodeHighlight\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Brotkrueml\\CodeHighlight\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
},
"typo3/cms": {
"extension-key": "codehighlight",
"web-dir": ".Build/web"
}
}
}