Download the PHP package mantas6/fzf-php without Composer
On this page you can find all versions of the php package mantas6/fzf-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package fzf-php
This package allows you to create fzf
powered menus straight from your PHP code.

Features
- Automatic
fzf
binary download - Inline
fzf
configuration - Option list styling
- Selected option preview
- Live option list reload
- Laravel support
Installation
Install the package:
Usage
Options
Options can be provided in a multitude of ways.
Strings
- Returns
null
if user cancels the prompt
Arrays
- Each array element represents different column in the finder
Objects
To use objects as options, at least one is required:
- Implement
toArray
- Implement
PresentsForFinder
interface - Provide presenter callback
Options presentation
Callback can be provided for presentation. This will work for any options type.
Multiple columns can be present by returning an array.
Implementing PresentsForFinder
interface
Option objects can implement a special interface, that would work the same as providing a presenter callback.
Styling
Option columns can be styling using cell()
helper function in the presenter callback.
Formatting options are:
- Available colors:
red, green, yellow, blue, magenta, cyan, white, default, gray, bright-red, bright-green, bright-yellow, bright-blue, bright-magenta, bright-cyan, bright-white
More information can be found at Symfony Docs: Table
Preview
Preview window can be enabled for each selected option.
If more advanced styling is needed, style()
helper can be used.
- Use
->table()
for creating compact tables - Use
->block()
for creating text blocks
Additional variables
fzf
provides additional variables to the preview (and other) child processes.
Full set of variables are available at fzf
Reference - Environment variables exported to child processes
Live reload
If options argument is callable, when input value is changed, the options list will be re-fetched.
Input query can be accessed through the FinderEnv
object.
Headers
Fixed header will be displayed if header list is passed.
Options as object
Instead of passing options as array, object can be used.
The class needs to meet one of the following requirements:
- Must implement the native
Traversable
interface - Needs to implement
toArray()
method
Multi mode
Retrieve multiple options from a list.
- Returns
[]
if user cancels the prompt
Arguments
Pass any other fzf
configuration arguments:
- Arguments
delimiter
(ord
),with-nth
are used internally, and will be overridden if specified - Arguments that transform output may not be supported
- Consult
fzf
Reference for all available options
Reusable object approach
Class instance can be created directly for more reusable approach.
Additional configuration is available through the class methods.
Configuration
Use system fzf
binary instead of fetching it.
- Automatic binary download will be disabled when custom command is set
Set global arguments for all prompts.
Binary download
The fzf
binary is downloaded automatically on the first use, however you can initiate the download manually.
Automatic update
To optimize the initial start, especially when CI/CD is used, it is recommended to add this to your composer.json
file.
See also:
All versions of fzf-php with dependencies
symfony/console Version ^7.0
symfony/process Version ^7.0
symfony/string Version ^7.0