Skip to content

Commit 4f95b01

Browse files
authored
Merge pull request #7 from WP-API/add-composer-json
Add composer.json
2 parents a812600 + 9b0cd8a commit 4f95b01

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Exclude composer files, we only depend on the installers.
2+
composer.lock
3+
vendor/

composer.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "wp-api/markdown-sync",
3+
"description": "Imports markdown from a remote site (like GitHub) into WordPress as pages",
4+
"type": "wordpress-plugin",
5+
"license": "GPL2+",
6+
"authors": [
7+
{
8+
"name": "WP-API Team",
9+
"homepage": "https://github.com/wp-api"
10+
}
11+
],
12+
"require": {
13+
"composer/installers": "~1.0",
14+
"php": "^5.6.0||^7.0"
15+
}
16+
}

0 commit comments

Comments
 (0)