1. Go to this page and download the library: Download cytec/zend-log-slack library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cytec / zend-log-slack example snippets
$writer = new \Cytec\Log\Writer\Slack('<YOUR_SLACK_WEBHOOK_URL>');
//Optional - use this filter only if you want to send critical messages to Slack
$writer->addFilter(new \Laminas\Log\Filter\Priority(\Laminas\Log\Logger::CRIT));
$logger = new \Laminas\Log\Logger();
$logger->addWriter($writer);
$logger->info('Informational message');
$logger->crit('Critical message');
//second "extra" parameter is supported and printed as properties in slack
$logger->crit('Critical message', $_SERVER);