forked from Elephant418/Markdownify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 962 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 962 Bytes
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
{
"name": "addedbytes/markdownify",
"type": "lib",
"description": "The HTML to Markdown converter for PHP ",
"keywords": ["markdown", "html", "converter", "markdownify"],
"license": "MIT",
"homepage": "https://github.com/AddedBytes/Markdownify",
"authors": [
{
"name": "Milian Wolff",
"email": "mail@milianw.de",
"homepage": "http://milianw.de"
},
{
"name": "Thomas Zilliox",
"email": "hello@tzi.fr",
"homepage": "https://tzi.fr"
},
{
"name": "Dave Child",
"email": "dave@addedbytes.com",
"homepage": "https://addedbytes.com"
}
],
"require": {
"php": ">=8.4.0"
},
"require-dev": {
"phpunit/phpunit": "^12"
},
"autoload": {
"psr-4": {
"Markdownify\\": "src",
"Test\\Markdownify\\": "test"
}
}
}