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

ActiveLibrary

okyayaykut/laravel-settings
===========================

Laravel Settings Manager

v1.0(8y ago)112GPL-3.0PHPPHP &gt;=5.4.0

Since Feb 27Pushed 7y ago1 watchersCompare

[ Source](https://github.com/okyayaykut/laravel-settings)[ Packagist](https://packagist.org/packages/okyayaykut/laravel-settings)[ RSS](/packages/okyayaykut-laravel-settings/feed)WikiDiscussions master Synced 2mo ago

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

laravel-settings
================

[](#laravel-settings)

Management settings for laravel 5 using json file.

Installation
============

[](#installation)

To install this package include it in your `composer.json`

```
"require": {
    "okyayaykut/laravel-settings": "v1.0"
}

```

And run `composer update`

Add the Service Provider to the `provider` array in your `config/app.php`

```
okyayaykut\LaravelConfig\LaravelConfigServiceProvider::class

```

Add an alias for the facade to your `config/app.php`

```
'Settings' => okyayaykut\LaravelConfig\LaravelConfigFacade::class,

```

Publish the config files:

```
$ php artisan vendor:publish --provider="okyayaykut\LaravelConfig\LaravelConfigServiceProvider"

```

Change `config/settings.php` according for changing json file path.

Using
=====

[](#using)

Set a value

```
Settings::set('key', 'value');

```

Set multiple

```
Settings::set([
    'key1' => 'value1',
    'key2' => 'value2',
]);

```

Save all settings

```
Settings::save();

```

Get a value

```
Settings::get('key');

```

Get a value with default

```
Settings::get('key', 'value');

```

Remove a value

```
Settings::remove('key');

```

Clean all settings

```
Settings::clean();

```

Get all settings

```
Settings::all();

```

Set all data

```
Settings::setData([
    'key1' => 'value1',
    'key2' => 'value2',
]);

```

Contributors
============

[](#contributors)

- Aykut OKYAY - [Github](https://github.com/okyayaykut)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

2996d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9eef25f3fcc615132fbd0b60868b72a8a14455b476c32917a3d658a38fd60394?d=identicon)[okyayaykut](/maintainers/okyayaykut)

---

Top Contributors

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

### Embed Badge

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

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

###  Alternatives

[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)[aedart/athenaeum

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

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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