Introduction
Getting started
The only requirement for the Alfred PHP Workflow library is PHP 7.4 or greater.
Click the link below to get started with Installation.
Alfred PHP Workflows, Made Easy
The Alfred Workflows library makes it trivial to implement a custom PHP Script Filter in your workflow.
<?phpuse Alfred\Workflows\Workflow;
$workflow = new Workflow();
$workflow->item() ->title('Bob') ->subtitle('Head Burger Chef') ->icon('images/bob.png');
$workflow->item() ->title('Linda') ->subtitle('Restaurant Manager') ->icon('images/linda.png');
$workflow->output();
Introduction
The only requirement for the Alfred PHP Workflow library is PHP 7.4 or greater.
Click the link below to get started with Installation.