-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 929 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
{
"name": "rankletter/commonmark-ext-seo-image",
"license": "MIT",
"type": "commonmark-extension",
"homepage": "https://github.com/RankLetter/commonmark-ext-seo-image",
"description": "Adds support for explicit width and height as well as lazy loading to the league/commonmark markdown parser package",
"keywords": [
"markdown",
"commonmark",
"extension",
"lazy",
"image",
"explicit width and height"
],
"authors": [
{
"name": "Peter Thaleikis",
"homepage": "https://releasecandidate.dev"
},
{
"name": "Simon vom Eyser",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"league/commonmark": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"RankLetter\\CommonMarkImageExtension\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}