forked from wpreadme2markdown/wp2md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.01 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
{
"name": "wpreadme2markdown/wp2md",
"description": "CLI tool for converting WordPress Plugin readme.txt to Markdown",
"keywords": [
"wordpress",
"markdown",
"readme",
"converter"
],
"license": "MIT",
"authors": [
{
"name": "Benjamin J. Balter"
},
{
"name": "Christian Archer",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "5.5.9"
},
"sort-packages": true
},
"require": {
"symfony/console": "^3.2|^4.0|^5.0",
"wpreadme2markdown/wpreadme2markdown": "^3.0.1",
"php": ">= 5.5.9"
},
"require-dev": {
"ext-json": "*",
"indeyets/pake": "~1.99",
"secondtruth/phar-compiler": "~1.1"
},
"autoload": {
"psr-4": {
"WPReadme2Markdown\\Cli\\": "src/"
}
},
"scripts": {
"pake": "pake"
},
"bin": [
"bin/wp2md"
]
}