jcalosor/servicest

Laravel 5.6 Services class generator

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/jcalosor/servicest

0.1.7 2018-08-27 05:25 UTC

This package is auto-updated.

Last update: 2025-09-29 01:45:32 UTC


README

Laravel 5.6 Services class generator

build:passed Latest Stable Version Total Downloads License

Installation

Step 1: Execute composer

composer require jcalosor/servicest

(Optional): For Laravel versions < 5.5, while in the laravel directory, edit the config/app.php file

Add the following code.

JCalosor\Servicest\ServicestServiceProvider::class

Step 2: Publish the configuration file

Note: Make sure you are inside the laravel directory first, then run.

php artisan vendor:publish --tag=servicest-config

Step 3: Verify the install

Note: Again in the laravel directory, run.

php artisan

A new command in the make section should already appear like so:

make:service         Create a new service library class

Installation Done!