-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.47 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
{
"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.1.0",
"typo3/cms-backend": "^12.4 || ^13.4",
"typo3/cms-core": "^12.4 || ^13.4",
"typo3/cms-extensionmanager": "^12.4 || ^13.4",
"typo3/cms-frontend": "^12.4 || ^13.4",
"typo3/cms-install": "^12.4 || ^13.4",
"typo3/cms-rte-ckeditor": "^12.4 || ^13.4"
},
"require-dev": {
"bk2k/bootstrap-package": "^15.0",
"friendsofphp/php-cs-fixer": "^3.64",
"overtrue/phplint": "^9.0",
"typo3/cms-lowlevel": "^12.4 || ^13.4"
},
"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": {
"post-autoload-dump": [
"[ -d .build/public/_assets ] || mkdir -p .build/public/typo3conf/ext/",
"[ -d .build/public/_assets ] || [ -L .build/public/typo3conf/ext/syntax ] || ln -snvf ../../../../. .build/public/typo3conf/ext/syntax"
],
"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"
]
},
"extra": {
"typo3/cms": {
"extension-key": "syntax",
"web-dir": ".build/public"
},
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}