2bj / phanybar
Control AnyBar from your php
Installs: 6 568 718
Dependents: 2
Suggesters: 0
Security: 0
Stars: 62
Watchers: 2
Forks: 3
Open Issues: 0
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-10-26 17:55:57 UTC
README
Control AnyBar from the command line or from your php code
Install
You must have AnyBar installed and running
The usual :
composer global require 2bj/phanybar
Usage
From the command line :
phanybar green
Or if AnyBar is on another port :
phanybar black 1387
Or use it as a library :
use Bakyt\Console\Phanybar; $phanybar = new Phanybar; $phanybar->send('green'); $phanybar->send('black', 1387);