├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── dependency-review.yml │ ├── php.yml │ └── update-changelog.yml ├── .php-cs-fixer.dist.php ├── .pre-commit-config.yaml ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpstan-baseline.neon ├── phpstan.neon.dist └── src ├── Component.php ├── Component ├── Button.php ├── Component.php ├── Currency.php ├── DateTime.php ├── Document.php ├── FlowButton.php ├── Image.php ├── QuickReplyButton.php ├── Text.php ├── UrlButton.php └── Video.php ├── Exceptions ├── CouldNotSendNotification.php └── UnsupportedMediaValue.php ├── WhatsAppChannel.php ├── WhatsAppServiceProvider.php ├── WhatsAppTemplate.php └── WhatsAppTextMessage.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [aalbarca] 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/.github/workflows/update-changelog.yml -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component.php -------------------------------------------------------------------------------- /src/Component/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/Button.php -------------------------------------------------------------------------------- /src/Component/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/Component.php -------------------------------------------------------------------------------- /src/Component/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/Currency.php -------------------------------------------------------------------------------- /src/Component/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/DateTime.php -------------------------------------------------------------------------------- /src/Component/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/Document.php -------------------------------------------------------------------------------- /src/Component/FlowButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/FlowButton.php -------------------------------------------------------------------------------- /src/Component/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/Image.php -------------------------------------------------------------------------------- /src/Component/QuickReplyButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/QuickReplyButton.php -------------------------------------------------------------------------------- /src/Component/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/Text.php -------------------------------------------------------------------------------- /src/Component/UrlButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/UrlButton.php -------------------------------------------------------------------------------- /src/Component/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Component/Video.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotSendNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Exceptions/CouldNotSendNotification.php -------------------------------------------------------------------------------- /src/Exceptions/UnsupportedMediaValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/Exceptions/UnsupportedMediaValue.php -------------------------------------------------------------------------------- /src/WhatsAppChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/WhatsAppChannel.php -------------------------------------------------------------------------------- /src/WhatsAppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/WhatsAppServiceProvider.php -------------------------------------------------------------------------------- /src/WhatsAppTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/WhatsAppTemplate.php -------------------------------------------------------------------------------- /src/WhatsAppTextMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netflie/laravel-notification-whatsapp/HEAD/src/WhatsAppTextMessage.php --------------------------------------------------------------------------------