-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
composer.json
31 lines (31 loc) · 855 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
{
"name": "benbalter/wordpress-to-jekyll-exporter",
"description": "One-click WordPress plugin that converts all posts, pages, taxonomies, metadata, and settings to Markdown and YAML which can be dropped into Jekyll.",
"require": {
"league/html-to-markdown": "^5.0",
"symfony/yaml": "^5.4"
},
"license": "GPLv3 or later",
"authors": [{
"name": "Ben Balter",
"email": "[email protected]"
}],
"require-dev": {
"phpunit/phpunit": "~8.0",
"wp-cli/wp-cli": "~2.4",
"wp-coding-standards/wpcs": "^3.0",
"php-coveralls/php-coveralls": "*",
"yoast/phpunit-polyfills": "^2.0"
},
"config": {
"bin-dir": "bin",
"vendor-dir": "vendor",
"platform-check": false,
"platform": {
"php": "7.2.5"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}