-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
46 lines (46 loc) · 1.3 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
{
"name": "tempest/highlight",
"description": "Fast, extensible, server-side code highlighting",
"autoload": {
"psr-4": {
"Tempest\\Highlight\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tempest\\Highlight\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Brent Roose",
"email": "brendt@stitcher.io"
}
],
"require": {
"php": "^8.3"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10.0",
"friendsofphp/php-cs-fixer": "^3.21",
"league/commonmark": "^2.4",
"assertchris/ellison": "^1.0.2",
"symfony/var-dumper": "^6.4|^7.0"
},
"suggest": {
"assertchris/ellison": "Allows you to analyse sentence complexity",
"league/commonmark": "Adds markdown support"
},
"scripts": {
"phpunit": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
"csfixer": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"phpstan": "vendor/bin/phpstan analyse src tests",
"qa": [
"composer csfixer",
"composer phpstan",
"composer phpunit"
]
},
"license": "MIT"
}