-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.02 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
{
"name": "brotkrueml/twig-codehighlight",
"description": "Twig extension for code highlighting using highlight.php",
"license": "GPL-2.0-or-later",
"keywords": [
"twig",
"syntax highlighter"
],
"authors": [
{
"name": "Chris Müller",
"role": "Developer"
}
],
"require": {
"php": ">= 8.1",
"scrivo/highlight.php": "^9.18",
"twig/twig": "^3.7"
},
"require-dev": {
"brotkrueml/coding-standards": "~6.1.0",
"ergebnis/composer-normalize": "~2.44.0",
"infection/infection": "^0.29.7",
"phpstan/phpstan": "1.12.7",
"phpunit/phpunit": "^10.5 || 11.4",
"psr/log": "^3.0",
"rector/rector": "1.2.8"
},
"suggest": {
"psr/log": "Output a warning when a given language is not available"
},
"autoload": {
"psr-4": {
"Brotkrueml\\TwigCodeHighlight\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Brotkrueml\\TwigCodeHighlight\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"sort-packages": true
}
}