A custom skeleton package for laravel

0.7 2023-04-15 18:59 UTC

This package is auto-updated.

Last update: 2024-09-17 21:28:55 UTC


README

68747470733a2f2f692e6962622e636f2f56394e4c3067722f44414c4c2d452d323032332d30342d31312d30302d30372d30312d6c6f676f2d736b656c65746f6e2d6c61726176656c2d76696265732d666f722d7061636b6167652d616e642d7468652d746578742d77696c6c2d62652d536b656c65746f6e2e706e67

Introduction

The Laravel Skeleton package provides a customizable starting point for developers creating packages for Laravel.

Installation

You can install the package using composer

$  composer require nogorsolutionsltd/skeleton

Then add the service provider to config/app.php. In Laravel versions 5.5 and beyond, this step can be skipped if package auto-discovery is enabled.

'providers' => [
    ...
     NogorSolutionsLTD\Skeleton\ServiceProvider::class,
    ...
];

You can publish the configuration file and assets by running:

$ php artisan vendor:publish --provider=" NogorSolutionsLTD\Skeleton\ServiceProvider::class,"

Now that we have published a few new files to our application we need to reload them with the following command:

$ composer dump-autoload

Change log

Please see the changelog for more information on what has changed recently.

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email author email instead of using the issue tracker.

Credits

  • Sarfaraz Muhammad Sajib

License

license. Please see the license file for more information.