Skip to content

netgloo/benjamin_core

Repository files navigation

Benjamin Core

Note: This is the core code for Benjamin platform. If you need to install Benjamin go here instead.

Install In Laravel

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"
    ],
  }

Change Log

Please see changelog for more information what has changed recently.

Contributing

Please see contributing and conduct for details.

Security

If you discover any security related issues, please email info@netgloo.com instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.