├── .gitignore ├── LICENSE ├── README.md ├── README_RUS.md ├── composer.json ├── examples ├── createGroupAndSendMessage.php ├── receiveNotification.php ├── sendPictureByLink.php ├── sendPictureByUpload.php ├── sendTextMessage.php ├── statusesExample.php ├── uploadFile-sendFileByUrl.php └── uploadFile.php └── src ├── GreenApiClient.php └── tools ├── Account.php ├── Groups.php ├── Journals.php ├── Marking.php ├── Queues.php ├── Receiving.php ├── Sending.php ├── ServiceMethods.php ├── Statuses.php └── Webhooks.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/README.md -------------------------------------------------------------------------------- /README_RUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/README_RUS.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/composer.json -------------------------------------------------------------------------------- /examples/createGroupAndSendMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/examples/createGroupAndSendMessage.php -------------------------------------------------------------------------------- /examples/receiveNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/examples/receiveNotification.php -------------------------------------------------------------------------------- /examples/sendPictureByLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/examples/sendPictureByLink.php -------------------------------------------------------------------------------- /examples/sendPictureByUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/examples/sendPictureByUpload.php -------------------------------------------------------------------------------- /examples/sendTextMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/examples/sendTextMessage.php -------------------------------------------------------------------------------- /examples/statusesExample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/examples/statusesExample.php -------------------------------------------------------------------------------- /examples/uploadFile-sendFileByUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/examples/uploadFile-sendFileByUrl.php -------------------------------------------------------------------------------- /examples/uploadFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/examples/uploadFile.php -------------------------------------------------------------------------------- /src/GreenApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/GreenApiClient.php -------------------------------------------------------------------------------- /src/tools/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/Account.php -------------------------------------------------------------------------------- /src/tools/Groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/Groups.php -------------------------------------------------------------------------------- /src/tools/Journals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/Journals.php -------------------------------------------------------------------------------- /src/tools/Marking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/Marking.php -------------------------------------------------------------------------------- /src/tools/Queues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/Queues.php -------------------------------------------------------------------------------- /src/tools/Receiving.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/Receiving.php -------------------------------------------------------------------------------- /src/tools/Sending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/Sending.php -------------------------------------------------------------------------------- /src/tools/ServiceMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/ServiceMethods.php -------------------------------------------------------------------------------- /src/tools/Statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/Statuses.php -------------------------------------------------------------------------------- /src/tools/Webhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-api-client-php/HEAD/src/tools/Webhooks.php --------------------------------------------------------------------------------