Installation

  1. Copy or create SupervisorCommand.php file in your app/Console/Commands folder
  2. Edit Kernel.php in app/Console/Commands folder
  3. Add the command in $commands array property
    protected $commands = [
        \App\Console\Commands\SupervisorCommand::class,
    ];
  1. Run from shell php artisan shell:supervisor
    Usage:
      shell:supervisor [options]

    Options:
          --list            List supervisor processes
          --start[=START]   Start supervisor process by process name
          --stop[=STOP]     Stop a supervisor process by PID or process name
          --start-all       Stop all supervisor processes
          --stop-all        Stop all supervisor processes
          --up              Start supervisor service
          --down            Stop supervisor service

Broadcast and supervisor links

Bug Reports

GitHub issue 🐛.

Core Development Discussion

Discussion regarding bugs, new features, 💡, and implementation of existing features takes place in the issue GitHub channel. If you like, you may connect to the Slack channel as well.

Versioning

For transparency and insight into our release cycle, and for striving to maintain backwards compatibility, this code will be maintained under the Semantic Versioning guidelines as much as possible.

Releases will be numbered with the following format:

<major>.<minor>.<patch>

Example: 1.0.0-alpha < 1.0.0-alpha.1 < 1.0.0-alpha.beta < 1.0.0-beta < 1.0.0-beta.2 < 1.0.0-beta.11 < 1.0.0-rc.1 < 1.0.0

And constructed with the following guidelines:

For more information on SemVer, please visit http://semver.org/.

For more information about bower versioning, please visit https://github.com/npm/node-semver

Security Vulnerabilities​

​If you discover a security vulnerability 🔒 within this project, please send an e-mail to Giovambattista Fazioli at g.fazioli@undolog.com. All security vulnerabilities will be promptly addressed.