├── .github └── FUNDING.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── EventSource.php └── MessageEvent.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: clue 2 | custom: https://clue.engineering/support 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-eventsource/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-eventsource/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-eventsource/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-eventsource/HEAD/composer.json -------------------------------------------------------------------------------- /src/EventSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-eventsource/HEAD/src/EventSource.php -------------------------------------------------------------------------------- /src/MessageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clue/reactphp-eventsource/HEAD/src/MessageEvent.php --------------------------------------------------------------------------------