This project shows how to receive SMS messages using webhooks with the Vonage PHP SDK and the Slim Framework. For the video tutorial, see https://www.youtube.com/@VonageDev
- PHP 8+
- Composer
- Vonage Developer Account
Create a new project folder (or use existing):
mkdir vonage-sms
cd vonage-sms
Initialize composer:
composer init
Install the Vonage PHP SDK:
composer require vonage/client
Install the Slim Framework:
composer require slim/slim:"4".*
Install PSR-7 support:
composer require slim/psr7