-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
89 lines (89 loc) · 2.32 KB
/
composer.json
File metadata and controls
89 lines (89 loc) · 2.32 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "bk2k/syntax",
"type": "typo3-cms-extension",
"description": "Lightweight, robust, elegant syntax highlighting content element based on PrismJS",
"keywords": [
"TYPO3 CMS",
"Extension",
"Syntax highlighting",
"PrismJS"
],
"homepage": "https://github.com/benjaminkott/syntax",
"authors": [
{
"name": "Benjamin Kott",
"email": "info@bk2k.info",
"role": "Developer",
"homepage": "http://www.bk2k.info/"
}
],
"license": [
"GPL-2.0-or-later"
],
"support": {
"issues": "https://github.com/benjaminkott/syntax/issues"
},
"require": {
"php": ">=8.2.0",
"typo3/cms-backend": "^13.4 || ^14.3",
"typo3/cms-core": "^13.4 || ^14.3",
"typo3/cms-extensionmanager": "^13.4 || ^14.3",
"typo3/cms-frontend": "^13.4 || ^14.3",
"typo3/cms-install": "^13.4 || ^14.3",
"typo3/cms-rte-ckeditor": "^13.4 || ^14.3"
},
"require-dev": {
"bk2k/bootstrap-package": "^16.0",
"bk2k/extension-helper": "^2.1",
"friendsofphp/php-cs-fixer": "^3.64",
"overtrue/phplint": "^9.0",
"typo3/cms-lowlevel": "^13.4 || ^14.3"
},
"autoload": {
"psr-4": {
"BK2K\\Syntax\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"BK2K\\Syntax\\Tests\\": "Tests"
}
},
"config": {
"bin-dir": ".build/bin",
"discard-changes": true,
"sort-packages": true,
"optimize-autoloader": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"cgl": [
"php-cs-fixer --diff -v fix"
],
"cgl:ci": [
"php-cs-fixer --diff -v --dry-run fix"
],
"test:php:lint": [
"phplint"
],
"test": [
"@test:php:lint"
],
"set-version": [
"extension-helper version:set"
]
},
"extra": {
"typo3/cms": {
"extension-key": "syntax",
"web-dir": ".build/public"
},
"branch-alias": {
"dev-master": "5.0.x-dev"
}
}
}