├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Loop.php └── Loop │ ├── Driver.php │ ├── DriverFactory.php │ ├── InvalidWatcherException.php │ └── UnsupportedFeatureException.php └── test ├── DummyDriver.php ├── LoopStateTest.php └── LoopTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/src/Loop.php -------------------------------------------------------------------------------- /src/Loop/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/src/Loop/Driver.php -------------------------------------------------------------------------------- /src/Loop/DriverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/src/Loop/DriverFactory.php -------------------------------------------------------------------------------- /src/Loop/InvalidWatcherException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/src/Loop/InvalidWatcherException.php -------------------------------------------------------------------------------- /src/Loop/UnsupportedFeatureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/src/Loop/UnsupportedFeatureException.php -------------------------------------------------------------------------------- /test/DummyDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/test/DummyDriver.php -------------------------------------------------------------------------------- /test/LoopStateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/test/LoopStateTest.php -------------------------------------------------------------------------------- /test/LoopTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-interop/event-loop/HEAD/test/LoopTest.php --------------------------------------------------------------------------------