├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── examples ├── log.php └── processes.php ├── phpunit.xml.dist ├── src └── Mtdowling │ └── Supervisor │ ├── EventListener.php │ └── EventNotification.php └── tests ├── Mtdowling └── Tests │ └── Supervisor │ ├── EventListenerTest.php │ └── EventNotificationTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/composer.json -------------------------------------------------------------------------------- /examples/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/examples/log.php -------------------------------------------------------------------------------- /examples/processes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/examples/processes.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Mtdowling/Supervisor/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/src/Mtdowling/Supervisor/EventListener.php -------------------------------------------------------------------------------- /src/Mtdowling/Supervisor/EventNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/src/Mtdowling/Supervisor/EventNotification.php -------------------------------------------------------------------------------- /tests/Mtdowling/Tests/Supervisor/EventListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/tests/Mtdowling/Tests/Supervisor/EventListenerTest.php -------------------------------------------------------------------------------- /tests/Mtdowling/Tests/Supervisor/EventNotificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/tests/Mtdowling/Tests/Supervisor/EventNotificationTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdowling/php-supervisor-event/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------