Installation
Install via Composer
Section titled “Install via Composer”composer require stumason/laravel-kickEnvironment Variables
Section titled “Environment Variables”Add to your .env:
KICK_ENABLED=trueKICK_TOKEN=your-secure-random-tokenGenerate a secure token:
php -r "echo bin2hex(random_bytes(32));"Publish Config (Optional)
Section titled “Publish Config (Optional)”php artisan vendor:publish --tag=kick-configThis creates config/kick.php where you can customize tokens, scopes, allowed commands, and other settings.
Verify Installation
Section titled “Verify Installation”curl -H "Authorization: Bearer your-token" http://localhost/kick/healthReturns application health status if configured correctly.