forked from sixlive/parsedown-highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.4 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
{
"name": "skodjob/parsedown-highlight",
"description": "Server side code block rendering for Parsedown",
"keywords": [
"markdown",
"code",
"parsedown"
],
"homepage": "https://github.com/skodjob/parsedown-highlight",
"license": "MIT",
"version": "0.4.1",
"authors": [
{
"name": "TJ Miller",
"email": "[email protected]",
"homepage": "https://tjmiller.co",
"role": "Developer"
},
{
"name": "Ondrej Babec",
"email": "[email protected]",
"homepage": "https://skodjob.io",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"erusev/parsedown": "1.8.0-beta-5",
"scrivo/highlight.php": "^9.14",
"erusev/parsedown-extra": "0.8.0-beta-1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.10",
"larapack/dd": "^1.0",
"sempro/phpunit-pretty-print": "^1.0",
"phpunit/phpunit": "^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"sixlive\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"styles:lint": "php-cs-fixer fix --dry-run --diff",
"styles:fix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true
}
}