melsaka/api-builder
Composer 安装命令:
composer require melsaka/api-builder
包简介
Scaffold CRUD API (Controller, Service, Repository, Resource, Requests, Policies, etc.) for Laravel applications
README 文档
README
Scaffold CRUD API (Controller, Service, Repository, Resource, Requests, Policies, etc.) for Laravel applications.
Features
- Generate complete CRUD API structure
- Create Controllers, Services, Repositories
- Generate Resources and Form Requests
- Create Policies for authorization
- Includes API error handling traits
- Custom exceptions for API responses
- Supports uploading images to your models
This package is using my laravel image manager package to support adding images easily to your models.
Requirements
- PHP ^8.2
- Laravel ^11.0 or ^12.0
Installation
You can install the package via Composer:
composer require melsaka/api-builder
The package will automatically register its service provider.
Usage
Publish Stubs
If you want to customize the generated files, publish the stub files:
php artisan vendor:publish --tag=api-builder-stubs php artisan vendor:publish --tag=image-manager
Generate Required Files
First, generate the base API files (controllers, traits, exceptions):
php artisan api:scaffold
Generate CRUD for a Model
Generate complete CRUD for a specific model:
php artisan api:crud User
This will create:
- Controller:
app/Http/Controllers/Api/User/UserController.php - Service:
app/Services/UserService.php - Repository:
app/Repositories/UserRepository.php - Resource:
app/Http/Resources/UserResource.php - Requests:
app/Http/Requests/User/StoreUserRequest.php&UpdateUserRequest.php - Policy:
app/Policies/UserPolicy.php - Routes:
app/Routes/User.php
Uploading Images To Your Models
Checkout laravel image manager package to learn what you need to do first.
Publish the configuration file:
php artisan vendor:publish --provider="Melsaka\ImageManager\ImageManagerServiceProvider" --tag="image-manager"
Then you create the images table:
php artisan migrate
Add your model name and it's settings under the models attribute in the config file:
return [ 'storage_disk' => 'public', // could be r2, aws, etc.. 'base_path' => 'uploads', 'format' => 'webp', 'quality' => 90, 'models' => [ 'user' => [ 'types' => [ 'avatar' => [ 'sizes' => [ 'thumbnail' => [ 'width' => 100, 'height' => 100, 'mode' => 'cover', ], 'medium' => [ 'width' => 300, 'height' => 300, 'mode' => 'cover', ], ], ], ], ], ], ];
Add the Trait to your Model
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Melsaka\ImageManager\Traits\HasImages; class User extends Model { use HasImages; // Your model code... }
Now all you need to do is to define the supported images function:
<?php class User extends Model { use HasImages; public static function supportedImages() { return [ 'profile' => 'singular', // for singular image upload 'gallery' => 'multiple', // for multiple images upload ]; } // Your model code... }
That's it now you can do:
php artisan api:crud User
For more info read about: laravel image manager docs
Configuration
The package works out of the box with sensible defaults. All generated files follow Laravel conventions and best practices.
Credits
License
The MIT License (MIT). Please see License File for more information.
melsaka/api-builder 适用场景与选型建议
melsaka/api-builder 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 18 次下载、GitHub Stars 达 2, 最近一次更新时间为 2025 年 08 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「generator」 「api」 「repository」 「controller」 「service」 「crud」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 melsaka/api-builder 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 melsaka/api-builder 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 melsaka/api-builder 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Memio's PrettyPrinter, used to generate PHP code from given Model
repository php library
A PSR-7 compatible library for making CRUD API endpoints
Laravel 5 - Repositories to the database layer
Structure for the Laravel Service-Repository Pattern
Rinvex Repository is a simple, intuitive, and smart implementation of Active Repository with extremely flexible & granular caching system for Laravel, used to abstract the data layer, making applications more flexible to maintain.
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-08-16