Skip to content

Installation

Terminal window
composer require stumason/laravel-kick

Add to your .env:

Terminal window
KICK_ENABLED=true
KICK_TOKEN=your-secure-random-token

Generate a secure token:

Terminal window
php -r "echo bin2hex(random_bytes(32));"
Terminal window
php artisan vendor:publish --tag=kick-config

This creates config/kick.php where you can customize tokens, scopes, allowed commands, and other settings.

Terminal window
curl -H "Authorization: Bearer your-token" http://localhost/kick/health

Returns application health status if configured correctly.