PHPackages                             gigabait93/laravel-settings - 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. gigabait93/laravel-settings

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

gigabait93/laravel-settings
===========================

Settings for Laravel.

v1.1.1(2mo ago)08MITPHPPHP &gt;=8.3

Since Aug 15Pushed 2mo agoCompare

[ Source](https://github.com/GIGABAIT93/laravel-settings)[ Packagist](https://packagist.org/packages/gigabait93/laravel-settings)[ RSS](/packages/gigabait93-laravel-settings/feed)WikiDiscussions main Synced today

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

Laravel Settings
================

[](#laravel-settings)

A small package for saving and cache settings in Laravel.

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

[](#installation)

1. Set the package:

    ```
    composer require gigabait93/laravel-settings
    ```
2. Publish Config and Migration (optional):

    ```
    php artisan vendor:publish --provider="Gigabait93\LaravelSettings\Providers\LaravelSettingsServiceProvider" --tag=config
    php artisan vendor:publish --provider="Gigabait93\LaravelSettings\Providers\LaravelSettingsServiceProvider" --tag=migrations
    ```
3. Complete the migration:

    ```
    php artisan migrate
    ```

Використання
------------

[](#використання)

Obtaining and setting values:

```
use Gigabait93\LaravelSettings\Facades\Settings;

Settings::set('site.name', 'My Site');
$name = Settings::get('site.name');

// or helper
sset('items_per_page', 20);
$value = sget('items_per_page');
```

Managing a group of values:

```
settings()->setMany([
    'a' => 1,
    'b' => true,
]);

$values = settings()->many(['a', 'b']); // ['a' => 1, 'b' => true]
```

Cache
-----

[](#cache)

The package uses cache to reduce the number of references to the database. Cash setup can be changed in the file `config/settings.php`:

- `ttl` — Storage time in seconds (0 turns off cache).
- `prefix` — Key prefix.
- other parameters describe keys and tags.

License
-------

[](#license)

MIT

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance87

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 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 ~129 days

Total

3

Last Release

65d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16218922?v=4)[GIGABAIT](/maintainers/GIGABAIT)[@Gigabait](https://github.com/Gigabait)

---

Top Contributors

[![GIGABAIT93](https://avatars.githubusercontent.com/u/59637348?v=4)](https://github.com/GIGABAIT93 "GIGABAIT93 (6 commits)")

### Embed Badge

![Health badge](/badges/gigabait93-laravel-settings/health.svg)

```
[![Health](https://phpackages.com/badges/gigabait93-laravel-settings/health.svg)](https://phpackages.com/packages/gigabait93-laravel-settings)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[mike-bronner/laravel-model-caching

Automatic caching for Eloquent models.

2.4k91.9k1](/packages/mike-bronner-laravel-model-caching)[flarum/core

Delightfully simple forum software.

201.4M2.3k](/packages/flarum-core)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[api-platform/laravel

API Platform support for Laravel

58171.8k14](/packages/api-platform-laravel)

PHPackages © 2026

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