-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 861 Bytes
/
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
{
"name": "kadet/keylighter",
"description": "Yet another syntax highlighter for PHP",
"license": "MIT",
"authors": [
{
"name": "Kacper Donat",
"email": "contact@kadet.net"
}
],
"require": {
"php": "^7.3|^8.0"
},
"require-dev": {
"ext-json": "*",
"easybook/geshi": "v1.0.8.19",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "^3.5",
"symfony/console": "^4.4",
"symfony/var-dumper": "^5.4",
"symfony/var-exporter": "^4.4"
},
"suggest": {
"symfony/console": "Allows usage of keylighters CLI utility."
},
"autoload": {
"psr-4": {
"Kadet\\Highlighter\\": "."
},
"files": ["./functions.php"]
},
"bin": [
"bin/keylighter"
],
"config": {
"platform": {
"php": "7.3.33"
},
"sort-packages": true
}
}