-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 993 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
{
"name": "zenstruck/commonmark-extensions",
"description": "A collection of CommonMark extensions.",
"homepage": "https://github.com/zenstruck/commonmark-extensions",
"type": "library",
"license": "MIT",
"keywords": [],
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"league/commonmark": "^2.4"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6.0",
"symfony/phpunit-bridge": "^6.1|^7.0",
"symfony/var-dumper": "^5.4|^6.0|^7.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\CommonMark\\Extension\\": ["src/"] }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\CommonMark\\Extension\\Tests\\": ["tests/"] }
},
"minimum-stability": "dev",
"prefer-stable": true
}