Note: This is the core code for Benjamin platform. If you need to install Benjamin go here instead.
Add the package via Composer:
$ composer require netgloo/benjamin_core
Add the service provider to Laravel, in config/app.php
:
'providers' => [
//
Netgloo\BenjaminCore\BenjaminCoreServiceProvider::class,
]
Add publish scripts on post-install-cmd
and post-update-cmd
events on project's root composer.json
, to enable auto publishing of public assets:
"scripts": {
"post-install-cmd": [
//
"php artisan vendor:publish --tag=public --force"
],
"post-update-cmd": [
//
"php artisan vendor:publish --tag=public --force"
],
}
Please see changelog for more information what has changed recently.
Please see contributing and conduct for details.
If you discover any security related issues, please email info@netgloo.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.