├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── fastlist.exe ├── phpunit.xml ├── pint.json ├── src ├── Exceptions │ ├── LooksLikeBusyBoxException.php │ ├── PIDCanOnlyBeAnIntegerException.php │ └── SkipUnixOneCallException.php └── Processes.php └── tests ├── ProcessesTest.php └── bin ├── build.md ├── while ├── while.exe ├── while.go └── while_darwin /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/composer.json -------------------------------------------------------------------------------- /fastlist.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/fastlist.exe -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/pint.json -------------------------------------------------------------------------------- /src/Exceptions/LooksLikeBusyBoxException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/src/Exceptions/LooksLikeBusyBoxException.php -------------------------------------------------------------------------------- /src/Exceptions/PIDCanOnlyBeAnIntegerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/src/Exceptions/PIDCanOnlyBeAnIntegerException.php -------------------------------------------------------------------------------- /src/Exceptions/SkipUnixOneCallException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/src/Exceptions/SkipUnixOneCallException.php -------------------------------------------------------------------------------- /src/Processes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/src/Processes.php -------------------------------------------------------------------------------- /tests/ProcessesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/tests/ProcessesTest.php -------------------------------------------------------------------------------- /tests/bin/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/tests/bin/build.md -------------------------------------------------------------------------------- /tests/bin/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/tests/bin/while -------------------------------------------------------------------------------- /tests/bin/while.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/tests/bin/while.exe -------------------------------------------------------------------------------- /tests/bin/while.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/tests/bin/while.go -------------------------------------------------------------------------------- /tests/bin/while_darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanodevium/processes/HEAD/tests/bin/while_darwin --------------------------------------------------------------------------------