PHPackages                             flickphp/flick - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. flickphp/flick

ActiveLibrary

flickphp/flick
==============

A stupidly-fast PHP form builder.

v1.0.0(today)048↑2650%MITPHPPHP ^8.3CI passing

Since Aug 25Pushed todayCompare

[ Source](https://github.com/flickphp/flick)[ Packagist](https://packagist.org/packages/flickphp/flick)[ Docs](https://github.com/flickphp/flick)[ GitHub Sponsors](https://github.com/flickphp)[ RSS](/packages/flickphp-flick/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

 [ ![Flick logo](https://raw.githubusercontent.com/flickphp/flick/main/art/flick-logo.svg) ](https://flickphp.com)

 [ ![Latest Stable Version](https://camo.githubusercontent.com/7437dc6dad04f20927012ea4f5ecc83b016a0139bf9ad921fd4dc9104b20ff65/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666c69636b7068702f666c69636b3f7374796c653d666c6174) ](https://packagist.org/packages/flickphp/flick) [ ![PHP Version](https://camo.githubusercontent.com/265da08f0d1c0ee78475d1df4a63e40160b76c9e978788508748d60d2b33a77b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f666c69636b7068702f666c69636b2f7068703f7374796c653d666c6174) ](https://packagist.org/packages/flickphp/flick) [ ![License](https://camo.githubusercontent.com/5548cb09251175e86ade33f1a604d2418c3e0c5cae538bb147d9caf2a80c207e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f666c69636b7068702f666c69636b3f7374796c653d666c6174) ](https://packagist.org/packages/flickphp/flick)

Flick
=====

[](#flick)

A stupidly-fast PHP form builder. One line of code builds a complete HTML form, with built-in server-side validation, CSRF protection, and all the other stuff you and your users need to stay fast and safe.

Sure, you can get AI to build your forms, but then you have to maintain them. And the more you build, the bigger the maintenance headache because none of them will be the same.

Flick is the successor to [Formr](https://github.com/formr/formr), which I also wrote. If you're coming from Formr, [flickphp/migrate](https://github.com/flickphp/migrate) converts your old code for you.

Full docs here: [flickphp.com](https://flickphp.com)

If you find Flick useful, please consider starring the project. Thank you!

Installation
------------

[](#installation)

```
composer require flickphp/flick
```

Configuration
-------------

[](#configuration)

Flick works with zero configuration. To change defaults, pass a config array:

```
$form = new Flick\Flick([
    'views' => 'bootstrap',   // CSS framework view: flick, bootstrap, bulma, tailwind, ...
]);
```

See the full configuration reference at .

Usage
-----

[](#usage)

```
