Skip to content

Commit

Permalink
Add Composer support (Small change)
Browse files Browse the repository at this point in the history
  • Loading branch information
christiaan committed Aug 17, 2014
1 parent 86eb129 commit 19a4cee
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -81,3 +81,7 @@ pip-log.txt

# Komodo Project
.komodoproject

# Composer
/vendor
/composer.lock
21 changes: 21 additions & 0 deletions composer.json
@@ -0,0 +1,21 @@
{
"name": "venomous0x/whats-api",
"description": "Interface to WhatsApp Messenger",
"license": "MIT",
"authors": [
{
"role": "TODO",
"name": "Firstname Lastname",
"email": "email@example.com"
}
],
"autoload": {
"classmap": [
"src/whatsprot.class.php",
"src/events"
]
},
"require": {
"ext-curl": "*"
}
}

1 comment on commit 19a4cee

@monofeld
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok

Please sign in to comment.