Skip to content

Commit 294e862

Browse files
committed
Initial commit.
0 parents  commit 294e862

File tree

6 files changed

+682
-0
lines changed

6 files changed

+682
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vendor/
2+
socialcrawler.log

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# WordPress SocialCrawler
2+
3+
WordPress SocialCrawler is a WordPress plugin that crawls social networks looking for items containing a specific hashtag. It does that by leveraging the [SocialCrawler](https://github.com/heavenconseil/socialcrawler) PHP library, and integrating it with the WordPress admin panel for convenience.

composer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "heavenconseil/wp-socialcrawler",
3+
"type": "wordpress-plugin",
4+
"description": "A WordPress plugin that crawls social networks looking for items containing a specific hashtag",
5+
"keywords": ["WordPress", "Crawler", "Facebook", "Instagram", "Twitter", "hashtags", "API"],
6+
"license": "proprietary",
7+
"version": "1.0.0",
8+
"authors": [
9+
{
10+
"name": "Dhaya Benmessaoud",
11+
"email": "dhaya.benmessaoud@gmail.com",
12+
"role": "developer"
13+
}
14+
],
15+
"repositories": [
16+
{
17+
"type": "vcs",
18+
"url": "git@github.com:heavenconseil/socialcrawler.git"
19+
}
20+
],
21+
"require": {
22+
"heavenconseil/socialcrawler": "dev-master"
23+
}
24+
}

0 commit comments

Comments
 (0)