├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src └── NotifierListener.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdarse/phpunit-notifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdarse/phpunit-notifier/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdarse/phpunit-notifier/HEAD/composer.json -------------------------------------------------------------------------------- /src/NotifierListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdarse/phpunit-notifier/HEAD/src/NotifierListener.php --------------------------------------------------------------------------------