├── .gitignore ├── .travis.yml ├── README.md ├── bin └── phpbgprocess ├── composer.json ├── composer.lock ├── phpunit-ci.xml.dist ├── phpunit.xml.dist ├── src └── Kohkimakimoto │ └── BackgroundProcess │ ├── BackgroundProcess.php │ ├── BackgroundProcessManager.php │ └── Cli.php └── tests ├── Kohkimakimoto └── BackgroundProcess │ ├── BackgroundProcessManagerTest.php │ ├── BackgroundProcessManagerTest │ └── t1.sh │ ├── BackgroundProcessTest.php │ ├── BackgroundProcessTest │ ├── t1.sh │ └── t2.sh │ └── CliTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /vendor 3 | .project 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/README.md -------------------------------------------------------------------------------- /bin/phpbgprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/bin/phpbgprocess -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit-ci.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/phpunit-ci.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Kohkimakimoto/BackgroundProcess/BackgroundProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/src/Kohkimakimoto/BackgroundProcess/BackgroundProcess.php -------------------------------------------------------------------------------- /src/Kohkimakimoto/BackgroundProcess/BackgroundProcessManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/src/Kohkimakimoto/BackgroundProcess/BackgroundProcessManager.php -------------------------------------------------------------------------------- /src/Kohkimakimoto/BackgroundProcess/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/src/Kohkimakimoto/BackgroundProcess/Cli.php -------------------------------------------------------------------------------- /tests/Kohkimakimoto/BackgroundProcess/BackgroundProcessManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/tests/Kohkimakimoto/BackgroundProcess/BackgroundProcessManagerTest.php -------------------------------------------------------------------------------- /tests/Kohkimakimoto/BackgroundProcess/BackgroundProcessManagerTest/t1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/tests/Kohkimakimoto/BackgroundProcess/BackgroundProcessManagerTest/t1.sh -------------------------------------------------------------------------------- /tests/Kohkimakimoto/BackgroundProcess/BackgroundProcessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/tests/Kohkimakimoto/BackgroundProcess/BackgroundProcessTest.php -------------------------------------------------------------------------------- /tests/Kohkimakimoto/BackgroundProcess/BackgroundProcessTest/t1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/tests/Kohkimakimoto/BackgroundProcess/BackgroundProcessTest/t1.sh -------------------------------------------------------------------------------- /tests/Kohkimakimoto/BackgroundProcess/BackgroundProcessTest/t2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # syntax error script. 4 | 5 | eettcccf 6 | -------------------------------------------------------------------------------- /tests/Kohkimakimoto/BackgroundProcess/CliTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/tests/Kohkimakimoto/BackgroundProcess/CliTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohkimakimoto/BackgroundProcess/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------