-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.81 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.81 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
{
"name": "tempest/markdown",
"description": "Fast and extensible Markdown in PHP",
"autoload": {
"psr-4": {
"Tempest\\Markdown\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tempest\\Markdown\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Brent Roose",
"email": "brendt@stitcher.io"
}
],
"require": {
"php": "^8.5",
"tempest/highlight": "^2.23.1",
"symfony/yaml": "^8.0"
},
"require-dev": {
"carthage-software/mago": "1.16.0",
"phpunit/phpunit": "^12.0",
"phpbench/phpbench": "^1.4",
"tempest/debug": "^3.10",
"league/commonmark": "^2.8",
"michelf/php-markdown": "^2.0",
"erusev/parsedown-extra": "^0.9.0"
},
"scripts": {
"bench": "vendor/bin/phpbench run --report=aggregate",
"bench:tempest": "vendor/bin/phpbench run tests/Bench/MarkdownBench.php --filter=benchTempest --report=aggregate",
"fmt": "vendor/bin/mago fmt",
"lint": "vendor/bin/mago lint --reporting-format=rich && vendor/bin/mago lint --fix --format-after-fix",
"analyse": "vendor/bin/mago analyse",
"test": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
"qa": [
"composer fmt",
"composer lint",
"composer analyse",
"composer test",
"composer bench:tempest"
],
"github:lint": "vendor/bin/mago lint --potentially-unsafe --minimum-fail-level=note --reporting-format=github",
"github:fmt": "vendor/bin/mago fmt --check",
"github:analyse": "vendor/bin/mago analyse",
"github:test": "vendor/bin/phpunit"
},
"license": "MIT"
}