salt / core
This package houses the core logic, templates and components used by Salt web applications
Fund package maintenance!
salt
Installs: 6 981
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 3
Requires
- php: ^8.1
- loilo/fuse: ^6.5
- mailchimp/transactional: ^1.0
- spatie/laravel-data: ^3
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- pestphp/pest: ^2.5
- spatie/laravel-ray: ^1.26
- dev-main
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 0.1.0
- 0.0.9
- 0.0.8
- 0.0.7
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
- dev-dependabot/github_actions/stefanzweifel/git-auto-commit-action-5
- dev-dependabot/github_actions/actions/checkout-4
- dev-dependabot/github_actions/ramsey/composer-install-2
This package is auto-updated.
Last update: 2025-03-09 12:40:19 UTC
README
Netlify - Package Documentation Home
This package houses core logic, templates and components used by Laravel applications built by the Salt team.
It has the following features:
- Custom collection traits
- A Mandrill mail sender service
- A dynamic menu builder
- Permissions and roles
- Settings
Installation
You can install the package via composer:
composer require salt/core
You can publish and run the migrations with:
php artisan vendor:publish --tag="core-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="core-config"
This is the contents of the published config file:
use App\Options\RoleOptions; use App\Options\PermissionOptions; return [ 'mail' => array( 'mandrill' => array( 'key' => env('MANDRILL_KEY', ''), 'template' => env('MANDRILL_TEMPLATE', '') ) ), 'permissions' => PermissionOptions::$permissionsArray, 'roles' => RoleOptions::$rolesArray, 'url' => env('APP_URL', ''), 'user' => \App\Models\User::class ];
Documentation
View the documentation for this package here
Testing
composer test
Releasing a new version
To release a new version, first create a tag on the main
branch with the new version number. E.g "1.0.1":
git tag -a 1.0.1 -m "Release version 1.0.1"
Then push that tag up to GitHub:
git push origin 1.0.1
A new version will automatically be created on packagist which will then be available for installation.
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.