-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
44 lines (44 loc) · 1.11 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
{
"name": "dirtsimple/postmark",
"description": "Sync WP content from Markdown files",
"type": "wp-cli-package",
"homepage": "https://github.com/dirtsimple/postmark/",
"license": "MIT",
"authors": [
{
"name": "PJ Eby",
"homepage": "https://github.com/pjeby"
}
],
"keywords": [
"markdown",
"wordpress",
"wp",
"wp-cli",
"yaml",
"front-matter",
"content-management",
"configuration-management",
"static-site-generator",
"yaml front matter"
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [ "command.php" ],
"psr-4": {
"dirtsimple\\Postmark\\": "src/"
}
},
"require": {
"dirtsimple/clean-yaml": "^0.1",
"dirtsimple/imposer": "dev-master",
"wp-cli/wp-cli": "^2.11",
"wp-cli/entity-command": "^2.8",
"rarst/wpdatetime": "^0.3.0",
"league/commonmark": "^1.6",
"twig/twig": "^2.4",
"symfony/yaml": "^3.4",
"php": ">=7.1"
}
}