Skip to content

Commit

Permalink
Fix error on autoload file
Browse files Browse the repository at this point in the history
  • Loading branch information
vluzrmos committed Jun 26, 2015
1 parent ccad8fb commit 2c17576
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"Vluzrmos\\": "src/Vluzrmos/"
},
"files" : [
"src/SlackApi/helpers.php"
"src/Vluzrmos/SlackApi/helpers.php"
]
},
"minimum-stability": "stable"
Expand Down
10 changes: 10 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,16 @@ SlackSearch::files('my file');

// Search for messages
SlackSearch::messages('my message');

// or just use the helper

//Autoload the api
slack()->post('chat.postMessage', [...]);

//Autoload a Slack Method
slack('Chat')->message([...]);
slack('Team')->info();

```

## Using Dependencie Injection
Expand Down

0 comments on commit 2c17576

Please sign in to comment.