diff --git a/.gitignore b/.gitignore index 353d1e1d..0416d3dd 100644 --- a/.gitignore +++ b/.gitignore @@ -81,3 +81,7 @@ pip-log.txt # Komodo Project .komodoproject + +# Composer +/vendor +/composer.lock \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..fb2635b7 --- /dev/null +++ b/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": "*" + } +}