PHPackages                             eggbe/laravel-hash-store - 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. eggbe/laravel-hash-store

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

eggbe/laravel-hash-store
========================

Laravel 5 version of the file-based library for easy create and manage list of hashes

297PHP

Since Oct 27Pushed 7y ago1 watchersCompare

[ Source](https://github.com/eggbe/laravel-hash-store)[ Packagist](https://packagist.org/packages/eggbe/laravel-hash-store)[ RSS](/packages/eggbe-laravel-hash-store/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Introduction
------------

[](#introduction)

This is the powerful library designed special for the Laravel framework and provides an easiest way to create and manage your own list of hashes.

Features
--------

[](#features)

The library is fully file-based so you don't need to use any databases.

For more information see [Eggbe/HashStore](https://github.com/eggbe/hash-store).

Requirements
------------

[](#requirements)

- PHP &gt;= 7.0.0
- [Laravel](https://github.com/laravel/laravel) &gt;= 5.0
- [Able/Helpers](https://github.com/phpable/helpers)

Install
-------

[](#install)

Here's a pretty simple way to start using Eggbe/HashStore:

Step 1: Use [Composer](http://getcomposer.org) to add Eggbe/HashStore in your project:

```
composer require eggbe/hash-store
```

Step 2: Register the service provider in your `app.php`:

```
'providers' => [
	// ...
	\Eggbe\LaravelHashStore\LaravelHashStoreServiceProvider::class,
],
```

Step 3: If you like to use facades you also have to register the LaravelHashStore alias in your `app.php`:

```
'aliases' => [
	//...
	'HashStore' => \Eggbe\LaravelHashStore\LaravelHashStoreFacade::class,
]
```

Step 4: Use Artisan for publish package config file into your configuration folder:

```
php artisan vendor:publish --provider="Eggbe\LaravelHashStore\LaravelHashStoreServiceProvider"
```

Step 5: Configure the package setting in the package config file that you have published at the previous step:

```
$HashStore = new \Eggbe\HashStore\HashStore([
	'path' => 'path-to-storage-directory',
	'filter' => '^.{0,32}$',
]);
```

Usage
-----

[](#usage)

It's mostly is similar to the [Eggbe/Soauth](https://github.com/eggbe/hash-store) package. The only difference is that you could use Facade instead the object's instance.

```
HashStore::create('keyword');
```

```
$hash = HashStore::find('keyword');
```

```
HashStore::remove('keyword');
```

Authors
-------

[](#authors)

Made with love at [Eggbe](http://eggbe.com).

Feedback
--------

[](#feedback)

We always welcome your feedback at .

License
-------

[](#license)

This package is released under the [MIT license](https://github.com/eggbe/laravel-hash-store/blob/master/LICENSE).

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/0e7980486450f7ae6c622ae5499ed59ee231673ebf27f7f18bb204846cd9bf84?d=identicon)[eggbe](/maintainers/eggbe)

### Embed Badge

![Health badge](/badges/eggbe-laravel-hash-store/health.svg)

```
[![Health](https://phpackages.com/badges/eggbe-laravel-hash-store/health.svg)](https://phpackages.com/packages/eggbe-laravel-hash-store)
```

###  Alternatives

[rexlmanu/laravel-tickets

Simple but effective solutions to provide support

161.1k](/packages/rexlmanu-laravel-tickets)

PHPackages © 2026

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