tyesty / phpitbar
Library for creating bitbar plugins with php
dev-master
2019-03-23 22:22 UTC
Requires
- php: >=7.3.0
Requires (Dev)
- phpunit/phpunit: ^8.0
- slevomat/coding-standard: ^4.0
- squizlabs/php_codesniffer: ^3.4
This package is auto-updated.
Last update: 2025-03-24 11:41:31 UTC
README
Library for creating bitbar plugins with php
Usage
Installation
{ "require": { "tyesty/phpitbar": "^1.0" } }
or if you prefer, via command line:
$ composer require tyesty/phpitbar
Structure
Due to the fact that Bitbar is executing every file in the plugins directory, you will have to move all your composer stuff (and other files beside the main executable php file) to a subdirectory. This could look something like this:
.
├── yourplugin/
│ ├── src/
│ ├── composer.json
│ └── vendor/
└── test.5m.php