bartlett / monolog-growlhandler
Monolog handler that send notifications to Growl on Mac OS X and Windows
Requires
- php: >=5.3.0
- monolog/monolog: ~1.10
- pear/net_growl: ~2.7
Requires (Dev)
Suggests
- bartlett/monolog-callbackfilterhandler: Advanced filtering strategies for Monolog
- bartlett/phpunit-loggertestlistener: Allow logging unit tests to your favorite PSR-3 logger interface
This package is auto-updated.
Last update: 2024-10-26 04:21:41 UTC
README
GrowlHandler is a handler for Monolog that send notifications to Growl on Mac OS X and Windows.
Install
-
via packagist the current source dev-master or the stable version 1.0.0
Documentation
The documentation for GrowlHandler 1.0 is available in English to read it online or download to read it later (multiple formats).
AsciiDoc source code are available on docs
folder of the repository.
Contribute
Contributions to source code and its documentation are always welcome.
As developper, I’m always happy when I have the more informations as possible to check and find out issues. This is the reason why I’ve created a PHPUnit TestSuite Listener for compatible PSR-3 Loggers.
And recently, for the php-compatinfo project, I’ve wrote a new PHPUnit ResultPrinter class, that is based on PSR-3 logger concept. You can learn more on this post in the CompatInfo’s blog.
If you want to use it, then :
-
install all the components via Composer
$ php composer.phar require --dev bartlett/monolog-growlhandler
-
create a
phpunit.xml
file with at least following contents :
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="true" backupStaticAttributes="false" bootstrap="tests/bootstrap.dev.php" colors="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnRisky="false" stopOnSkipped="false" verbose="true" printerClass="Bartlett\Tests\Monolog\Handler\ResultPrinter" > <filter> <whitelist> <directory suffix=".php">src/</directory> </whitelist> </filter> <testsuites> <testsuite name="Monolog GrowlHandler Test Suite"> <directory suffix="Test.php">tests/</directory> </testsuite> </testsuites> </phpunit>
-
configure the PSR-3 logger in
tests\MonologConsoleLogger.php
, if you want to change some behaviors.
PHPUnit 4.6.6 by Sebastian Bergmann and contributors. Configuration read from C:\home\github\monolog-growlhandler\phpunit.xml Monolog GrowlHandler Test Suite: Test suite started with 19 tests Bartlett\Tests\Monolog\Handler\GrowlHandlerTest: Test suite started with 19 tests Bartlett\Tests\Monolog\Handler\GrowlHandlerTest::testIsHandling: Test suite started with 8 tests Bartlett\Tests\Monolog\Handler\GrowlHandlerTest::testIsHandling: Test suite ended. Results OK. Tests: 8, Assertions: 8 Bartlett\Tests\Monolog\Handler\GrowlHandlerTest::testIsHandlingLevel: Test suite started with 8 tests Bartlett\Tests\Monolog\Handler\GrowlHandlerTest::testIsHandlingLevel: Test suite ended. Results OK. Tests: 8, Assertions: 8 Bartlett\Tests\Monolog\Handler\GrowlHandlerTest: Test suite ended. Results OK. Tests: 0, Assertions: 0 Monolog GrowlHandler Test Suite: Test suite ended. Results OK. Tests: 19, Assertions: 18 Time: 431 ms, Memory: 9.00Mb Results OK. Tests: 19, Assertions: 18