KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
phpunit-notifier
★ 31
Open GitHub ↗
Desktop notifications for PHPUnit
Download README (.md)
Explore Similar Repositories
tiy
:
NO LONGER MAINTAINED
orion-core
:
The next generation Terraria Server API.
statistical
:
A simple statistics library that draws inspiration from python
android_examples
:
Andrews share some examples.
macosx-nosleep-extension
:
Exported from code.google.com/p/macosx-nosleep-extension
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
phpunit-notifier
?
Download (.md)
PHPUnit Notifier ================  Use [composer](http://getcomposer.org/) to install on your project: ```shell $ composer require --dev "mdarse/phpunit-notifier" ``` To set up, just register `PHPUnitNotifier\NotifierListener` in the listeners section of you `phpunit.xml`. Example of PHPUnit XML configuration: ```xml <?xml version="1.0" encoding="UTF-8"?> <phpunit> <testsuites> <testsuite name="Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <listeners> <listener class="PHPUnitNotifier\NotifierListener"></listener> </listeners> </phpunit> ``` There is no supported mean to globally setup the notifier for every project, but here is a [dirty workaround](https://gist.github.com/mdarse/4028dffd9bb5fdb57889).