Under development, do not use!
This package allows you to store settings in a repository (database, Redis, ...) and use them through an application without hassle. You create a settings DTO as such:
class GeneralSettings extends Settings
{
public string $site_name;
public bool $site_active;
public static function group(): string
{
return 'general';
}
}
When you want to use these settings somewhere in your application, you can inject them since we register them in the Laravel Container. For example, in a controller:
class GeneralSettingsController
{
public function show(GeneralSettings $settings){
return view('settings.show', [
'site_name' => $settings->site_name,
'site_active' => $settings->site_active
]);
}
}
You can update settings as such:
class GeneralSettingsController
{
public function update(
GeneralSettingsRequest $request,
GeneralSettings $settings
){
$settings->site_name = $request->input('site_name');
$settings->site_active = $request->input('site_active');
$settings->save();
return redirect()->back();
}
}
Let's take a look at how to create your own settings DT.
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
You can install the package via composer:
composer require spatie/laravel-settings
You can publish and run the migrations with:
php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="config"
This is the contents of the published config file:
return [
/*
|--------------------------------------------------------------------------
| Settings
|--------------------------------------------------------------------------
|
| You can register all the settings DTO's here.
|
*/
'settings' => [
],
/*
|--------------------------------------------------------------------------
| Migrations path
|--------------------------------------------------------------------------
|
| When you create a new settings migration via the `make:settings-migration`
| command the package will store these migrations in this directory.
|
*/
'migrations_path' => database_path('settings'),
/*
|--------------------------------------------------------------------------
| Default repository
|--------------------------------------------------------------------------
|
| When no repository was set for a settings DTO, this repository will be
| used for loading and saving settings.
|
*/
'default_repository' => 'database',
/*
|--------------------------------------------------------------------------
| Repositories
|--------------------------------------------------------------------------
|
| Settings will be stored and loaded from these repositories. There are
| two types of repositories: database and Redis. But its always
| possible to create your specific types of repositories.
|
*/
'repositories' => [
'database' => [
'type' => Spatie\LaravelSettings\SettingsRepositories\DatabaseSettingsRepository::class,
'model' => \Spatie\LaravelSettings\Models\SettingsProperty::class,
'connection' => null,
],
'redis' => [
'type' => Spatie\LaravelSettings\SettingsRepositories\RedisSettingsRepository::class,
'connection' => null,
'prefix' => null,
],
],
/*
|--------------------------------------------------------------------------
| Global casts
|--------------------------------------------------------------------------
|
| When the package discovers a setting with a type other than the PHP built
| in types, it should be cast. These casts will automatically cast types
| when they occur in a settings DTO.
|
*/
'global_casts' => [
DateTimeInterface::class => Spatie\LaravelSettings\SettingsCasts\DateTimeInterfaceCast::class,
DateTimeZone::class => Spatie\LaravelSettings\SettingsCasts\DateTimeZoneCast::class,
Spatie\DataTransferObject\DataTransferObject::class => Spatie\LaravelSettings\SettingsCasts\DtoCast::class,
],
/*
|--------------------------------------------------------------------------
| Auto discover setting
|--------------------------------------------------------------------------
|
| The package will look for settings in these paths and automatically
| register them.
|
*/
'auto_discover_settings' => [
app()->path(),
],
/*
|--------------------------------------------------------------------------
| Cache path
|--------------------------------------------------------------------------
|
| When in production, it is advised to cache the automatically discovered
| and registered setting DTO's will be cached in this path.
|
*/
'cache_path' => storage_path('app/laravel-settings'),
];
The package is built around setting DTO's. These are classes with some public properties that extend from Settings
. They also have a static method group
that should return a string.
You can create multiple groups of settings, each with their own DTO. You could, for example, have GeneralSettings
with the general
group and BlogSettings
with the blog
group. It's up to you how to structure these settings.
Although it is possible to use the same group for different DTO's we advise you not to use the same group for multiple setting DTO's.
class GeneralSettings extends Settings
{
public string $site_name;
public bool $site_active;
public static function group(): string
{
return 'general';
}
}
Each property should be typed or partially typed by a docblock. More on that later.
In the end, you will have to add this DTO to the settings.php
config file in the settings
section so it can be loaded by Laravel:
return [
/*
|--------------------------------------------------------------------------
| Settings
|--------------------------------------------------------------------------
|
| You can register all the settings dto's here.
|
*/
'settings' => [
GeneralSettings::class
],
It is also possible to auto-discover settings DTO's. The package will look through your application and tries to discover Settings DTO's. You can specify the paths where these settings will be searched in the config auto_discover_settings
array. By default, this is the application's app path.
Autodiscovering settings requires some extra time before your application is booted up. That's why it is possible to cache them using the following command:
php artisan settings:discover
You can clear this cache by running:
php artisan settings:clear-discovered
Settings will be stored and loaded from a repository. There are two types of repositories database
and redis
. And it is possible to create multiple repositories for these types. For example, you could have two database
repositories, one that goes to a settings
table in your database and another that goes to a global_settings
table.
You can explicitly set the repository of a settings DTO by implementing the repository
method:
class GeneralSettings extends Settings
{
public string $site_name;
public bool $site_active;
public static function group(): string
{
return 'general';
}
public static function repository(): ?string
{
return 'global_settings';
}
}
When a repository is not set for a settings DTO, the default_repository
in the settings.php
config file will be used.
Before you can load/update settings, you will have to migrate them. Though this might sound a bit strange at the beginning, it is quite logical. You want to have some default settings to start with when you're creating a new application. And what would happen if we change a settings DTO? Our code would change, but our data doesn't.
That's why the package requires migrations each time you're changing/creating the structure of your settings DTO. These migrations will run next to the regular Laravel database migrations, and we've added some tooling to write them as quickly as possible.
Creating a settings migration works just like you would create a regular database migration. You can run the following command:
php artisan make:settings-migration CreateGeneralSettings
This will add a migration to the application/database/settings
directory:
use Spatie\LaravelSettings\SettingsMigration;
class CreateGeneralSettings extends SettingsMigration
{
public function up(): void
{
}
}
We haven't added a down
method, but this can be added if required. In the up
method, you can change the settings data in a repository when migrating. There are a few default operations supported:
You can add a property to a settings group as such:
public function up(): void
{
$this->migrator->add('general.timezone', 'Europe/Brussels');
}
Now we've added a timezone
property to the general
group, which is being used by the GeneralSettings
DTO. You should always give a default value for a newly created setting. In this case, this is the Europe/Brussels
timezone.
If the property in the settings DTO is nullable, it's possible to give null
as a default value.
It is possible to rename a property:
public function up(): void
{
$this->migrator->rename('general.timezone', 'general.local_timezone');
}
You can also move a property to another group:
public function up(): void
{
$this->migrator->rename('general.timezone', 'country.timezone');
}
It is possible to update the contents of a property:
public function up(): void
{
$this->migrator->update(
'general.timezone',
fn(string $timezone) => return 'America/New_York'
);
}
As you can see, this method takes a closure as an argument, which makes it possible to update a value based upon its old value.
public function up(): void
{
$this->migrator->delete('general.timezone');
}
When you're working on a big DTO with a lot of properties, it can be a bit cumbersome always to have to prepend the settings group. That's why you can also perform operations within a settings group:
public function up(): void
{
$this->settingsMigrator->inGroup('general', function (SettingsBlueprint $blueprint): void {
$blueprint->add('timzone', 'Europe/Brussels');
$blueprint->rename('timezone', 'local_timezone');
$blueprint->update('timezone', fn(string $timezone) => return 'America/New_York');
$blueprint->delete('timezone');
});
}
It is possible to create a settings DTO with regular PHP types:
class RegularTypeSettings extends Settings
{
public string $a_string;
public bool $a_bool;
public int $an_int;
public float $a_float;
public array $an_array;
public static function group(): string
{
return 'regular_ype';
}
}
Internally the package will convert these types to JSON and save them as such in the repository. But what about types like DateTime
and Carbon
or your own created types? Although these types can be converted to JSON, building them back up again from JSON isn't supported.
That's why you can specify casts within this package. There are two ways to define these casts: locally or globally.
Local casts work on one specific settings DTO's and should be defined for each property:
class DateSettings extends Settings
{
public DateTime $birth_date;
public static function group(): string
{
return 'date';
}
public static function casts(): array
{
return [
'bith_date' => DateTimeInterfaceCast::class
];
}
}
The DateTimeInterfaceCast
can be used for properties with types like DateTime
, DateTimeImmutable
, Carbon
and CarbonImmutable
. You can also use an already constructed cast. It becomes handy when you need to pass some extra arguments to the cast:
class DateSettings extends Settings
{
public $birth_date;
public static function group(): string
{
return 'date';
}
public static function casts(): array
{
return [
'bith_date' => new DateTimeInterfaceCast(DateTime::class)
];
}
}
As you can see, we provide DateTime::class
to the cast, so it knows what type of DateTime
it should use because the birth_date
property was not typed, and the cast couldn't infer the type to use.
You can also provide arguments to a cast without constructing it:
class DateSettings extends Settings
{
public $birth_date;
public static function group(): string
{
return 'date';
}
public static function casts(): array
{
return [
'bith_date' => DateTimeInterfaceCast::class.':'.DateTime::class
];
}
}
Local casts are great for defining types for specific properties of the settings DTO. But it's a lot of work to define a local cast for each regularly used type like a DateTime
. Global casts try to simplify this process.
You can define global casts in the global_casts
array of the package configuration. We've added some default casts to the configuration that can be handy:
'global_casts' => [
DateTimeInterface::class => Spatie\LaravelSettings\SettingsCasts\DateTimeInterfaceCast::class,
DateTimeZone::class => Spatie\LaravelSettings\SettingsCasts\DateTimeZoneCast::class,
Spatie\DataTransferObject\DataTransferObject::class => Spatie\LaravelSettings\SettingsCasts\DtoCast::class,
],
A global cast can work on:
- a specific type (
DateTimeZone::class
) - a type that implements an interface (
DateTimeInterface::class
) - a type that extends from another class (
DataTransferObject::class
)
In your settings DTO, when you use a DateTime
property (which implements DateTimeInterface
), you no longer have to define local casts:
class DateSettings extends Settings
{
public DateTime $birth_date;
public static function group(): string
{
return 'date';
}
}
The package will automatically find the cast and will use it to transform types between the settings DTO and repository.
There are quite a few options to type properties. You could type them in PHP:
class DateSettings extends Settings
{
public DateTime $birth_date;
public ?int $a_nullable_int;
public static function group(): string
{
return 'date';
}
}
Or you can use docblocks:
class DateSettings extends Settings
{
/** @var \DateTime */
public $birth_date;
/** @var ?int */
public $a_nullable_int;
public static function group(): string
{
return 'date';
}
}
Docblocks can be very useful to type arrays of objects:
class DateSettings extends Settings
{
/** @var array<\DateTime> */
public array $birth_dates;
// OR
/** @var \DateTime[] */
public array $birth_dates_alternative;
public static function group(): string
{
return 'date';
}
}
When you want to disable the ability to update the value of a setting, you can add a lock to it:
$dateSettings->lock('birth_date');
It is now impossible to update the value of birth_date
. When birthdate
was overwritten, and settings were saved, the package will load the old value of birthdate
from the repository.
You can also lock multiple settings at once:
$dateSettings->lock('birth_date', 'name', 'email');
Unlocking settings can be done as such:
$dateSettings->unlock('birth_date', 'name', 'email');
In tests, it is sometimes desired that some settings DTO's can be quickly used values that are different from default ones you've written in your migrations. That's why you can fake settings. Faked settings DTO's will be registered in the container. And you can overwrite some or all the properties in the settings DTO:
DateSettings::fake([
'birthdate_date' => new DateTime('16-05-1994')
]);
Now, when the DateSettings
DTO is injected somewhere in your application, the birth_date
property will be DateTime('16-05-1994')
.
A caster is a class implementing the SettingsCast
interface:
interface SettingsCast
{
/**
* Will be used to when retrieving a value from the repository, and
* inserting it into the settings DTO.
*/
public function get($payload);
/**
* Will be used to when retrieving a value from the settings DTO, and
* inserting it into the repository.
*/
public function set($payload);
}
A created caster can be used for local and global casts, but there are slight differences between them. The package will always try to inject the type of property, an FQSEN. It's casting as a first argument when constructing the caster. When it cannot deduce the type, null will be injected.
An example of such caster with a type injected is a simplified DtoCast
:
class DtoCast implements SettingsCast
{
private string $type;
public function __construct(?string $type)
{
$this->type = $type;
}
public function get($payload): DataTransferObject
{
return new $this->type($payload);
}
public function set($payload): array
{
return $payload->toArray();
}
}
The above is a caster for the spatie/data-transfer-object package, within its constructor, the type will be a specific DTO class, for example, DateDto::class
. In the get
method, we will construct a DateDto::class
with the repository properties. We receive a DateDto::class
as payload in the set
method and convert it to an array for safe storing in the repository.
When using a local cast, there are a few different possibilities to deduce the type:
// By the type of property
class CastSettings extends Settings
{
public DateTime $birth_date;
public static function casts(): array
{
return [
'bith_date' => DateTimeInterfaceCast::class
];
}
...
}
// By the docblock of a property
class CastSettings extends Settings
{
/** @var \DateTime */
public $birth_date;
public static function casts(): array
{
return [
'bith_date' => DateTimeInterfaceCast::class
];
}
...
}
// By explicit definition
class CastSettings extends Settings
{
public $birth_date;
public static function casts(): array
{
return [
'bith_date' => DateTimeInterfaceCast::class.':'.DateTime::class
];
}
...
}
In that last case: by explicit definition, it is possible to provide extra arguments that will be passed to the constructor:
class CastSettings extends Settings
{
public $birth_date;
public static function casts(): array
{
return [
'bith_date' => DateTimeWthTimeZoneInterfaceCast::class.':'.DateTime::class.',Europe/Brussels'
];
}
...
}
Although in this case, it might be more readable to construct the caster within the settings DTO:
class CastSettings extends Settings
{
public $birth_date;
public static function casts(): array
{
return [
'bith_date' => new DateTimeWthTimeZoneInterfaceCast(DateTime::class, 'Europe/Brussels')
];
}
...
}
When using global casts, the package will again try to deduce the type of property it's casting. In this case, it can only use the property type or try to infer the type of the property's docblock.
A global cast should be configured in the settings.php
config file and always has a specific (set) of type(s) it works on. These types can be a particular class, a group of classes implementing an interface, or a set of classes extending from another class.
A good example here is the DateTimeInterfaceCast
we've added by default in the config. It is defined in the config as such:
...
'global_casts' => [
DateTimeInterface::class => Spatie\LaravelSettings\SettingsCasts\DateTimeInterfaceCast::class,
],
...
Whenever the package detects a Carbon
, CarbonImmutable
, DateTime
or DateTimeImmutable
type as the type of one of the properties of a settings DTO. It will use the DateTimeInterfaceCast
as a caster. This because Carbon
, CarbonImmutable
, DateTime
and DateTimeImmutable
all implement DateTimeInterface
.
The type injected in the caster will be the type of the property. So let's say you have a property with the type DateTime
within your settings DTO. When casting this property, the DateTimeInterfaceCast
will receive DateTime:class
as a type.
There are two types of repositories included in the package, the redis
and database
repository. You can create multiple repositories for one type in the setting.php
config file. And each repository can be configured.
The database repository has two optional configuration options:
model
the Eloquent model used to load/save properties to the databaseconnection
the connection to use when interacting with the database
The Redis repository also has two optional configuration options:
prefix
an optional prefix that will be prepended to the keysconnection
the connection to use when interacting with Redis
It is possible to create your own types of repositories. A repository is a class which implements SettingsRepository
:
interface SettingsRepository
{
/**
* Get all the properties in the repository for a single group
*/
public function getPropertiesInGroup(string $group): array;
/**
* Check if a property exists in a group
*/
public function checkIfPropertyExists(string $group, string $name): bool;
/**
* Get the payload of a property
*/
public function getPropertyPayload(string $group, string $name);
/**
* Create a property within a group with a payload
*/
public function createProperty(string $group, string $name, $payload): void;
/**
* Update the payload of a property within a group
*/
public function updatePropertyPayload(string $group, string $name, $value): void;
/**
* Delete a property from a group
*/
public function deleteProperty(string $group, string $name): void;
/**
* Lock a set of properties for a specific group
*/
public function lockProperties(string $group, array $properties): void;
/**
* Unlock a set of properties for a group
*/
public function unlockProperties(string $group, array $properties): void;
/**
* Get all the locked properties within a group
*/
public function getLockedProperties(string $group): array;
}
All these functions should be implemented to interact with the type of storage you're using. The payload
parameters are raw values(int
, bool
, float
, string
, array
) within the database
, and redis
repository types. These raw values are converted to JSON. But this is not required. It is required to return raw values again in the getPropertiesInGroup
and getPropertyPayload
methods.
Each repository's constructor will receive a $config
array that the user-defined for the repository within the application settings.php
config file. It is possible to add other dependencies to the constructor. They will be injected when the repository is created.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.