Skip to content

Commit 19a4cee

Browse files
committed
Add Composer support (Small change)
1 parent 86eb129 commit 19a4cee

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,7 @@ pip-log.txt
8181

8282
# Komodo Project
8383
.komodoproject
84+
85+
# Composer
86+
/vendor
87+
/composer.lock

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "venomous0x/whats-api",
3+
"description": "Interface to WhatsApp Messenger",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"role": "TODO",
8+
"name": "Firstname Lastname",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"autoload": {
13+
"classmap": [
14+
"src/whatsprot.class.php",
15+
"src/events"
16+
]
17+
},
18+
"require": {
19+
"ext-curl": "*"
20+
}
21+
}

0 commit comments

Comments
 (0)