├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src └── Ko │ ├── Mixin │ ├── EventEmitter.php │ └── ProcessTitle.php │ ├── Process.php │ ├── ProcessManager.php │ ├── Semaphore.php │ ├── SharedMemory.php │ └── SignalHandler.php └── tests └── Ko ├── Fixtures └── demonize.php ├── Mixin ├── EventEmitterTest.php └── ProcessTitleTest.php ├── ProcessManagerTest.php ├── ProcessTest.php ├── SharedMemoryTest.php └── SignalHandlerTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Ko/Mixin/EventEmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/src/Ko/Mixin/EventEmitter.php -------------------------------------------------------------------------------- /src/Ko/Mixin/ProcessTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/src/Ko/Mixin/ProcessTitle.php -------------------------------------------------------------------------------- /src/Ko/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/src/Ko/Process.php -------------------------------------------------------------------------------- /src/Ko/ProcessManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/src/Ko/ProcessManager.php -------------------------------------------------------------------------------- /src/Ko/Semaphore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/src/Ko/Semaphore.php -------------------------------------------------------------------------------- /src/Ko/SharedMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/src/Ko/SharedMemory.php -------------------------------------------------------------------------------- /src/Ko/SignalHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/src/Ko/SignalHandler.php -------------------------------------------------------------------------------- /tests/Ko/Fixtures/demonize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/tests/Ko/Fixtures/demonize.php -------------------------------------------------------------------------------- /tests/Ko/Mixin/EventEmitterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/tests/Ko/Mixin/EventEmitterTest.php -------------------------------------------------------------------------------- /tests/Ko/Mixin/ProcessTitleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/tests/Ko/Mixin/ProcessTitleTest.php -------------------------------------------------------------------------------- /tests/Ko/ProcessManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/tests/Ko/ProcessManagerTest.php -------------------------------------------------------------------------------- /tests/Ko/ProcessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/tests/Ko/ProcessTest.php -------------------------------------------------------------------------------- /tests/Ko/SharedMemoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/tests/Ko/SharedMemoryTest.php -------------------------------------------------------------------------------- /tests/Ko/SignalHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterion/ko-process/HEAD/tests/Ko/SignalHandlerTest.php --------------------------------------------------------------------------------