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.0.0(9mo ago)05MITPHPPHP &gt;=8.3

Since Aug 15Pushed 8mo 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 1mo ago

READMEChangelog (1)Dependencies (3)Versions (2)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

32

—

LowBetter than 72% of packages

Maintenance59

Moderate activity, may be stable

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity50

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

Unknown

Total

1

Last Release

271d ago

### Community

Maintainers

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

---

Top Contributors

[![GIGABAIT93](https://avatars.githubusercontent.com/u/59637348?v=4)](https://github.com/GIGABAIT93 "GIGABAIT93 (4 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

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[orchestra/canvas

Code Generators for Laravel Applications and Packages

21017.2M158](/packages/orchestra-canvas)[aedart/athenaeum

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

245.2k](/packages/aedart-athenaeum)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[kirschbaum-development/commentions

A package to allow you to create comments, tag users and more

12369.2k](/packages/kirschbaum-development-commentions)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)

PHPackages © 2026

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