st-man-hori / laravel-make-service
create service class and service interface for laravel
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/st-man-hori/laravel-make-service
Requires
- illuminate/console: ^6.0|^7.0|^8.0|^9.0
- illuminate/support: ^6.0|^7.0|^8.0|^9.0
- mockery/mockery: ^1.4
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2025-10-21 13:43:56 UTC
README
Install
$ composer require st-man-hori/laravel-make-service --dev
Usage
php artisan make:service {name}
Example
$ php artisan make:service UserService
Services/Userservice.php <?php namespace App\Services; use App\Services\UserServiceInterface; class UserService implements UserServiceInterface { // }
Services/UserserviceInterface.php <?php namespace App\Services; interface UserServiceInterface { // }