smileraj/laravelpackage

LaravelPackage provide a separate package with skelton of laravel

dev-master 2020-08-26 10:03 UTC

This package is auto-updated.

Last update: 2024-05-26 17:49:58 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

A simple laravelpackage implementation for Laravel.

Installation

Install the package through Composer.

Run the Composer require command from the Terminal:

composer require smileraj/laravelpackage

Should you still be on version ^7.24 of Laravel, the final steps for you are to add the service provider of the package and alias the package. To do this open your config/app.php file.

Add a new line to the providers array:

smileraj\LaravelPackage\LaravelPackageServiceProvider::class

And optionally add a new line to the aliases array:

'Package' => smileraj\LaravelPackage\Facades\package::class,

Now you're ready to start using the laravelpackage in your application.