PHPackages                             wimil/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. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. wimil/settings

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

wimil/settings
==============

This package allows you to save the configuration in a more persistent way. Use the database to save your settings, you can save values in json format. You can also override the Laravel configuration.

v1.0(5y ago)1134MITPHPPHP &gt;=7.0

Since Mar 1Pushed 5y ago1 watchersCompare

[ Source](https://github.com/wimil/settings)[ Packagist](https://packagist.org/packages/wimil/settings)[ RSS](/packages/wimil-settings/feed)WikiDiscussions master Synced 4d ago

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

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

[](#laravel-settings)

This package allows you to save the configuration in a more persistent way. Use the database to save your settings, you can save values in json format. You can also override the Laravel configuration.

Getting Started
---------------

[](#getting-started)

### 1. Install

[](#1-install)

Run the following command:

```
composer require wimil/settings
```

### 2. Register (for Laravel &lt; 5.5)

[](#2-register-for-laravel--55)

Register the service provider in `config/app.php`

```
Wimil\Settings\Provider::class,
```

Add alias if you want to use the facade.

```
'Settings' => Wimil\Settings\Facade::class,
```

### 3. Publish

[](#3-publish)

Publish config file.

```
php artisan vendor:publish --provider="Wimil\Settings\Provider"
```

### 4. Configure

[](#4-configure)

You can change the options of your app from `config/settings.php` file

Usage
-----

[](#usage)

You can either use the helper method like `settings('foo')` or the facade `Settings::get('foo')`

### Facade

[](#facade)

```
Settings::get('foo');
Settings::set('foo', 'bar');
$settings = Settings::all();
```

### Helper

[](#helper)

```
settings('foo');
settings('foo', 'bar');
$settings = settings();
```

### Using your model

[](#using-your-model)

```
use Wimil\Settings\Model\Setting as BaseSetting;
class Setting extends BaseSetting {

}
```

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

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

1949d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/406484ac42b37d258e184b26c32a2ff39e80a4716e81f33203732a05219ffb77?d=identicon)[wimil](/maintainers/wimil)

---

Top Contributors

[![wimil](https://avatars.githubusercontent.com/u/54213518?v=4)](https://github.com/wimil "wimil (3 commits)")

---

Tags

jsonlaravelSettingsconfigpersistent

### Embed Badge

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

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

###  Alternatives

[akaunting/laravel-setting

Persistent settings package for Laravel

490883.0k7](/packages/akaunting-laravel-setting)[thewunder/conphigure

Framework Agnostic Configuration Library

3120.6k](/packages/thewunder-conphigure)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21318.6k3](/packages/ecotone-laravel)[garf/laravel-conf

Store additional configs in JSON or Database (write, read)

246.4k](/packages/garf-laravel-conf)

PHPackages © 2026

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