├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── examples └── ws_class.php └── src ├── Actions ├── Messages.php └── Webhook.php ├── Http └── Request.php ├── OAuth └── Config.php └── Whatsapp.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/composer.json -------------------------------------------------------------------------------- /examples/ws_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/examples/ws_class.php -------------------------------------------------------------------------------- /src/Actions/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/src/Actions/Messages.php -------------------------------------------------------------------------------- /src/Actions/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/src/Actions/Webhook.php -------------------------------------------------------------------------------- /src/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/src/Http/Request.php -------------------------------------------------------------------------------- /src/OAuth/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/src/OAuth/Config.php -------------------------------------------------------------------------------- /src/Whatsapp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVillamayor/Whatsapp-Api/HEAD/src/Whatsapp.php --------------------------------------------------------------------------------