ahs12 / laravel-setanjo
Laravel settings package for managing application configurations, user preferences, feature flags, and A/B testing with multi-tenant support
Fund package maintenance!
AHS12
Installs: 88
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 0
Forks: 0
Open Issues: 3
pkg:composer/ahs12/laravel-setanjo
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0||^12.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.9||^3.0
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^10.0.0||^9.0.0||^8.22.0
- pestphp/pest: ^2.34||^3.0
- pestphp/pest-plugin-arch: ^2.7||^3.0
- pestphp/pest-plugin-laravel: ^2.4||^3.0
- phpstan/extension-installer: ^1.3||^2.0
- phpstan/phpstan-deprecation-rules: ^1.1||^2.0
- phpstan/phpstan-phpunit: ^1.3||^2.0
- spatie/laravel-ray: ^1.35
This package is not auto-updated.
Last update: 2025-10-18 10:31:36 UTC
README
A powerful Laravel package for managing application settings and configurations. Store global application settings or model-specific configurations (user preferences, company settings, etc.) with automatic type casting, caching, and a clean API. Perfect for feature flags, A/B testing, user preferences, and dynamic configuration management.
Note: This package does not provide multi-tenancy features for your application. However, if your Laravel project already has multi-tenancy implemented, this package can store tenant-specific settings alongside your existing tenant architecture.
Features
- ๐ข Multi-Tenant Ready: Works with existing multi-tenant applications
- ๐๏ธ Model-Specific Settings: Store settings for any Eloquent model (User, Company, etc.)
- ๐๏ธ Global Settings: Application-wide settings without model scope
- โก Caching: Optional caching with configurable cache store
- ๐ Validation: Validate models and prevent unauthorized access
- ๐ฆ Clean API: Simple, intuitive API for setting and retrieving values
- ๐งช Fully Tested: Comprehensive test suite included
- โ Type Safety: Automatic type detection and conversion
Requirements
- PHP 8.2 or higher
- Laravel 10.0 or higher
Installation
- Install the package:
composer require ahs12/laravel-setanjo
- Publish and run migrations:
php artisan vendor:publish --tag="setanjo-migrations"
php artisan migrate
- Configure tenancy mode (optional):
By default, the package runs in strict mode (single tenant model type).
For basic setup with User model, no configuration needed. For other models or multiple tenant types:
php artisan vendor:publish --tag="setanjo-config"
Quick Setup
Option 1: Strict Mode (Default - Single Tenant Type)
Perfect for simple user preferences or single-model tenancy:
// Uses App\Models\User by default // No configuration needed
Option 2: Custom Strict Mode
For using a different model as the single tenant type:
// config/setanjo.php 'tenancy_mode' => 'strict', 'strict_tenant_model' => App\Models\Company::class,
Option 3: Polymorphic Mode
For multiple tenant model types (SaaS apps, complex multi-tenancy):
// config/setanjo.php 'tenancy_mode' => 'polymorphic', 'allowed_tenant_models' => [ App\Models\User::class, App\Models\Company::class, App\Models\Organization::class, ],
Basic Usage
Global Settings
use Ahs12\Setanjo\Facades\Settings; // Set application-wide settings Settings::set('app_name', 'My Application'); Settings::set('maintenance_mode', false); // Get with default fallback $appName = Settings::get('app_name', 'Default Name');
Tenant Settings (Strict Mode)
// User-specific settings (default tenant model) $user = User::find(1); Settings::for($user)->set('theme', 'dark'); Settings::for($user)->set('language', 'en'); // Or by tenant ID Settings::forTenantId(1)->set('notifications', true); echo Settings::for($user)->get('theme'); // 'dark'
Tenant Settings (Polymorphic Mode)
// Different model types as tenants $user = User::find(1); $company = Company::find(1); Settings::for($user)->set('theme', 'dark'); Settings::for($company)->set('timezone', 'UTC'); // Or by tenant ID with model class Settings::forTenantId(1, Company::class)->set('currency', 'USD');
Type Casting
Settings::set('is_active', true); // Boolean Settings::set('max_users', 100); // Integer Settings::set('rate', 4.99); // Float Settings::set('features', ['api', 'sms']); // Array Settings::set('config', '{"theme": "dark", "lang": "en"}'); // JSON string Settings::set('metadata',['version' => '1.0', 'author' => 'John']); // Object // Values are returned with correct types $isActive = Settings::get('is_active'); // Returns boolean true $maxUsers = Settings::get('max_users'); // Returns integer 100 $rate = Settings::get('rate'); // Returns float 4.99 $features = Settings::get('features'); // Returns array ['api', 'sms'] $config = Settings::get('config'); // Returns array ['theme' => 'dark', 'lang' => 'en'] $metadata = Settings::get('metadata'); // Returns object with version and author properties
Common Use Cases
User Preferences
$user = auth()->user(); Settings::for($user)->set('notification_email', true); Settings::for($user)->set('dashboard_layout', 'grid'); Settings::for($user)->set('timezone', 'America/New_York');
Application Configuration
Settings::set('maintenance_mode', false); Settings::set('registration_enabled', true); Settings::set('api_rate_limit', 1000);
Multi-Tenant SaaS (Polymorphic Mode)
// Company-level settings Settings::for($company)->set('feature_api_enabled', true); Settings::for($company)->set('user_limit', 50); // User preferences within company Settings::for($user)->set('email_notifications', false);
Documentation
For detailed documentation, advanced usage, and configuration options, visit our documentation site.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.