A custom skeleton package for laravel

1.0.5 2023-04-10 17:54 UTC

This package is auto-updated.

Last update: 2024-09-12 20:31:19 UTC


README

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.