Skip to content

Commit d72e58f

Browse files
committed
Add to Composer / Packagist
1 parent 7e0d936 commit d72e58f

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "u01jmg3/docx2md",
3+
"description": "Convert Microsoft Word files (.docx) to Markdown files (.md)",
4+
"homepage": "https://github.com/u01jmg3/docx2md",
5+
"keywords": [
6+
"docx",
7+
"md",
8+
"markdown",
9+
"conversion"
10+
],
11+
"type": "library",
12+
"license": "MIT",
13+
"authors": [
14+
{
15+
"name": "Jonathan Goode",
16+
"role": "Developer"
17+
}
18+
],
19+
"require": {
20+
"php": ">=5.3.9"
21+
}
22+
}

docx2md.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This PHP class will read a Word file (*.docx), parse it and return a
55
* markdown file.
66
*
7-
* PHP 5 (≥ 5.3.0)
7+
* PHP 5 (≥ 5.3.9)
88
*
99
* @author Jonathan Goode <https://github.com/u01jmg3>
1010
* @license http://www.opensource.org/licenses/mit-license.php MIT License

0 commit comments

Comments
 (0)