vallbo / slack-incoming-web-hooks
Slack Incoming WebHooks PHP vendor
Installs: 4 544
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.0
- guzzlehttp/guzzle: ~6.0
- phpunit/phpunit: ^6.5
- psr/log: ^1.0
Requires (Dev)
- jakub-onderka/php-console-highlighter: ^0.3.2
- jakub-onderka/php-parallel-lint: ^0.9.2
- phpmd/phpmd: ^2.6
- phpstan/phpstan: ^0.8.5
- povils/phpmnd: ^1.1
- sebastian/phpcpd: ^3.0
- slevomat/coding-standard: ^4.0
- squizlabs/php_codesniffer: ^3.1
This package is auto-updated.
Last update: 2025-03-23 21:06:33 UTC
README
Incoming web hooks help
Help for Slack Web Hook App: https://api.slack.com/incoming-webhooks
Usage example
use Vallbo\SlackNotification\Adapter\GuzzleConnector; use Vallbo\SlackNotification\NotificationFactory\NotificationMessageFactory; $factory = new NotificationMessageFactory( '<hook URI>' ); $message = $factory->createNotificationMessage('TEST', 'fun'); $connector = new GuzzleConnector(new \GuzzleHttp\Client()); $connector->sendNotification($message);