-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 900 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
32
33
34
{
"name": "pedrosancao/wordimpress",
"description": "Static site generator library using Wordpress API as content source.",
"keywords": ["static-site-generator", "wordpress-rest", "wordpress-api", "wp-json", "twig"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pedro Sanção",
"email": "[email protected]"
}
],
"bin": [
"bin/wordimpress"
],
"autoload": {
"psr-4": {
"PedroSancao\\Wordimpress\\": "src/"
}
},
"require": {
"php": ">=7.1.0",
"ext-dom": "*",
"ext-gd": "*",
"ext-inotify": "*",
"twig/twig": "^3.0",
"twig/intl-extra": "^3.0",
"twig/markdown-extra": "^3.0",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.*"
}
}