PHPackages                             liesauer/ql-plugin-simpleform - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. liesauer/ql-plugin-simpleform

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

liesauer/ql-plugin-simpleform
=============================

QueryList Plugin - SimpleForm

v4.0.1(8y ago)33183MITPHP

Since Sep 28Pushed 8y ago1 watchersCompare

[ Source](https://github.com/liesauer/QLPlugin-SimpleForm)[ Packagist](https://packagist.org/packages/liesauer/ql-plugin-simpleform)[ RSS](/packages/liesauer-ql-plugin-simpleform/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

QueryList V4 Plugin - SimpleForm
================================

[](#querylist-v4-plugin---simpleform)

make form submission easier

Installation
============

[](#installation)

```
composer require liesauer/ql-plugin-simpleform

```

Bind
====

[](#bind)

- QueryList `simpleForm` ($formUrl, $formSelector = '', $formParams = \[\], $postParams = \[\], ...$args)
    - `formUrl` where to get the form
    - `formSelector` only required if there are two or more form elements
    - `formParams` use for get the form, read `QueryList::get` or `QueryList::post`, default method is get
    - `postParams` same as `formParams` but use for form submission, default method is post
    - `args` no used

Usage
=====

[](#usage)

```
use liesauer\QLPlugin\SimpleForm;
use QL\QueryList;

require_once __DIR__ . '/vendor/autoload.php';

// cookie needed for this example
$cookie = new \GuzzleHttp\Cookie\CookieJar();

$ql = QueryList::getInstance();

// use this plugin
$ql->use(SimpleForm::class);

$username = $ql->simpleForm('https://github.com/login', '', [
    'options' => [
        'verify'  => false,
        'cookies' => $cookie,
    ],
], [
    'params'  => [
        'login'    => 'username',
        'password' => 'password',
    ],
    'options' => [
        'verify'  => false,
        'cookies' => $cookie,
    ],
])->find('.header-nav-current-user>.css-truncate-target')->text();

if (!empty($username)) {
    echo "welcome back, {$username}!\n";
} else {
    $error = $ql->find('.flash-error>.container')->text();
    echo "{$error}\n";
}
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~4 days

Total

2

Last Release

3146d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/de1688c5ec4d4150c9ead08020c575003dcf0e78af5b4689f101241e71aacd9c?d=identicon)[liesauer](/maintainers/liesauer)

---

Top Contributors

[![liesauer](https://avatars.githubusercontent.com/u/8676741?v=4)](https://github.com/liesauer "liesauer (8 commits)")

### Embed Badge

![Health badge](/badges/liesauer-ql-plugin-simpleform/health.svg)

```
[![Health](https://phpackages.com/badges/liesauer-ql-plugin-simpleform/health.svg)](https://phpackages.com/packages/liesauer-ql-plugin-simpleform)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
