NEW

Summary

Directory Structure

Directory structure:
└── phlib-console-process/
    ├── README.md
    ├── CHANGELOG.md
    ├── composer.json
    ├── ecs.php
    ├── LICENSE.md
    ├── phpunit.xml.dist
    ├── example/
    │   ├── Background.php
    │   ├── command
    │   └── Daemon.php
    ├── src/
    │   └── Command/
    │       ├── BackgroundCommand.php
    │       └── DaemonCommand.php
    ├── tests/
    │   └── Command/
    │       ├── BackgroundCommandTest.php
    │       ├── DaemonCommandTest.php
    │       └── Stub/
    │           ├── BackgroundCommandStub.php
    │           ├── DaemonCommandStub.php
    │           └── ExecuteStubTrait.php
    ├── .github/
    │   └── workflows/
    │       └── code-checks.yml
    └── .runConfigurations/
        ├── All unit tests.run.xml
        └── EasyCodingStandard.run.xml

Files Content