Skip to content

Commit

Permalink
Remove mode dependencies from entry (#1)
Browse files Browse the repository at this point in the history
* Removed Recommendation from package

* updated package names
  • Loading branch information
JLueke authored Dec 31, 2016
1 parent 548e263 commit 36c88df
Show file tree
Hide file tree
Showing 27 changed files with 1,461 additions and 1,548 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
vendor
vendor
coverage
48 changes: 23 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
# TwitterEntry
Provides Entries for publisher/publisher to post to Twitter.

TwitterUserEntry: post a status message as a user.
-> implements publisher/recommendation


# Installation
The recommended way to install this is through [composer](http://getcomposer.org).

Edit your `composer.json` and add:

```json
{
"require": {
"publisher/twitter-entry": "dev-master"
}
}
```

And install dependencies:

```bash
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar install
# TwitterEntry
Provides Entries for publisher/publisher to post to Twitter.

TwitterUserEntry: post a status message as a user.

# Installation
The recommended way to install this is through [composer](http://getcomposer.org).

Edit your `composer.json` and add:

```json
{
"require": {
"publisher/entry_twitter": "dev-master"
}
}
```

And install dependencies:

```bash
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar install
```
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "publisher/twitter-entry",
"name": "publisher/entry_twitter",
"description": "Entries for publisher/publisher to post on Twitter.",
"keywords": ["oauth", "publish", "post", "twitter"],
"keywords": ["publisher", "entry", "twitter", "publish", "post", "oauth"],
"license": "MIT",
"authors": [
{
Expand All @@ -11,9 +11,10 @@
],
"require": {
"php": ">=7.0.0",
"publisher/publisher" : "dev-master",
"publisher/recommendation" : "dev-master",
"symfony/validator": "^3.1"
"publisher/publisher" : "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 36c88df

Please sign in to comment.