PHPackages                             jakjr/keeper - 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. jakjr/keeper

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

jakjr/keeper
============

Uma abstração do Laravel5 Session para manter valores

5.1.1(6y ago)010.7k11MITPHPPHP &gt;=5.5.9

Since Sep 16Pushed 5y ago1 watchersCompare

[ Source](https://github.com/jakjr/keeper)[ Packagist](https://packagist.org/packages/jakjr/keeper)[ RSS](/packages/jakjr-keeper/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (5)Dependencies (2)Versions (14)Used By (1)

InputKeeper
===========

[](#inputkeeper)

Uma abstração do Laravel Session para guardar valores de inputs (pages, filters, etc)

Registrar o ServiceProvider (app.php)
=====================================

[](#registrar-o-serviceprovider-appphp)

'Jakjr\\Keeper\\KeeperServiceProvider',

Uso no Controller
=================

[](#uso-no-controller)

```
class KeepController extends BaseController {

    private $keeper;

    function __construct()
    {
        $this->keeper = App::make('keeper', [$this]);
    }

    public function index()
    {
        return View::make('keep.index')
            ->with('keeper', $this->keeper);
    }

    public function keep()
    {
        $this->keeper->keep(Input::only(['name', 'page']));
        return Redirect::back();
    }
}

```

Uso na View
===========

[](#uso-na-view)

```
{{Form::open(['action'=>'KeepController@keep'])}}

    {{Form::text('name', $keeper->get('name'))}}

    {{Form::text('page', $keeper->get('page'))}}

    {{Form::text('teste', $keeper->get('teste'))}}

    {{Form::submit()}}

{{Form::close()}}

```

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 81.3% 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 ~148 days

Recently: every ~67 days

Total

13

Last Release

2150d ago

Major Versions

0.0.7 → 5.1.12019-11-08

### Community

Maintainers

![](https://www.gravatar.com/avatar/6d6e282b162ca7251b449a5756f0d7bd292934449c90f9ca2fdcb849073cd961?d=identicon)[jakjr](/maintainers/jakjr)

---

Top Contributors

[![jakjr](https://avatars.githubusercontent.com/u/3920960?v=4)](https://github.com/jakjr "jakjr (13 commits)")[![robersonfaria](https://avatars.githubusercontent.com/u/5167382?v=4)](https://github.com/robersonfaria "robersonfaria (3 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jakjr-keeper/health.svg)

```
[![Health](https://phpackages.com/badges/jakjr-keeper/health.svg)](https://phpackages.com/packages/jakjr-keeper)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[renatomarinho/laravel-page-speed

Laravel Page Speed

2.5k1.7M11](/packages/renatomarinho-laravel-page-speed)[illuminate/pipeline

The Illuminate Pipeline package.

9348.3M267](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10533.5M989](/packages/illuminate-pagination)[illuminate/redis

The Illuminate Redis package.

8314.4M362](/packages/illuminate-redis)[illuminate/cookie

The Illuminate Cookie package.

224.5M132](/packages/illuminate-cookie)

PHPackages © 2026

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