承接 shreifelagamy/laravel-service-modules 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

shreifelagamy/laravel-service-modules

最新稳定版本:v2.0.1

Composer 安装命令:

composer require shreifelagamy/laravel-service-modules

包简介

Generate modular service architecture for Laravel applications

README 文档

README

Laravel Service Modules

A Laravel package to easily generate service modules for your Laravel applications.

Understanding the Architecture

To gain a deeper understanding of the architecture and how to effectively use service modules in Laravel, you can read this Medium article:

Simplify External API Integrations in Laravel Using Service Modules

This article provides insights into the benefits and implementation details of using service modules for external API integrations in Laravel applications.

Installation

You can install the package via composer:

composer require shreifelagamy/laravel-service-modules

Usage

php artisan service:generate UserService

This will create a new service class in the app/Services directory.

During the generation process, you will be prompted to:

  1. Generate an exception for the service
  2. Add methods to the repository
  3. Include Data Transfer Objects (DTOs) for the service

These prompts allow you to customize the service module according to your needs.

The generated service structure will look like this:

app/Services/UserService/
├── Providers/
│ └── UserServiceProvider.php
├── Repositories/
│ ├── UserServiceInterface.php
│ └── UserServiceRepository.php
├── Facades/
│ └── UserService.php
├── Exceptions/ (optional)
│ └── UserServiceException.php
└── DTOs/ (optional)
  └── UserData.php

Configuration

The package comes with a default configuration file that you can publish to customize the behavior:

php artisan vendor:publish --tag=laravel-service-modules-config

This will create a config/laravel-service-modules.php file where you can modify the default settings.

Customization

You can control the directory name for generated services through the config file. This allows you to customize where your service modules are created within your Laravel application.

TODO

We're constantly working to improve this package. Here are some features we're planning to add in the future:

  1. Support auto-creating PHPDoc for facades to include method definitions.
  2. Add more customization options for DTOs.

Stay tuned for these upcoming enhancements!

License

The Laravel Services Generator is open-sourced software licensed under the MIT license.

统计信息

  • 总下载量: 994
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 47
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 47
  • Watchers: 1
  • Forks: 8
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-10-09