定制 adexyme/openapi-to-postman 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

adexyme/openapi-to-postman

Composer 安装命令:

composer require adexyme/openapi-to-postman

包简介

Converts OpenAPI specs., especially as generated by the Scramble API documentation generator, to a corresponding Postman collection in Laravel

README 文档

README

OpenAPI to Postman Collection Generator

A simple CLI tool that reads an OpenAPI v3 JSON specification and generates a Postman Collection v2.1 JSON file. Use it to automate creating Postman collections from your API definitions.

Prerequisites

PHP 8.0 or higher

Composer installed globally: https://getcomposer.org/

A terminal (bash, zsh, PowerShell, etc.)

Installation

  1. Global install via Packagist

Install the package globally so 'postman:generate' is available everywhere

composer global require adexyme/openapi-to-postman

Make sure your global Composer vendor/bin directory is in your PATH. For example on Unix/macOS:

export PATH="$HOME/.composer/vendor/bin:$PATH"

or if using Composer 2

export PATH="$HOME/.config/composer/vendor/bin:$PATH"

After this, you can run:

postman:generate --help

to verify the command is registered.

  1. Per-project install (local)

If you only want to use the tool inside a specific Laravel project:

In your Laravel project root, add a path repository in composer.json:

{ "repositories": [ { "type": "path", "url": "./packages/adexyme/openapi-to-postman", "options": { "symlink": true } } ], "require": { "adexyme/openapi-to-postman": "*" } }

Install via Composer:

composer require adexyme/openapi-to-postman --prefer-source composer dump-autoload

Verify:

php artisan list | grep postman:generate

Usage

Generate a Postman Collection JSON from your OpenAPI file:

Basic usage:

postman:generate path/to/openapi.json

Specify output filename:

postman:generate path/to/openapi.json output/postman_collection.json

Group all requests under a folder name:

postman:generate openapi.json --folder="My API Endpoints"

input: Path to your OpenAPI v3 JSON file.

output (optional): Where to write the Postman collection (defaults to postman_collection.json in cwd).

--folder: Wraps all items in a Postman folder of the given name.

After running, import the generated JSON file into Postman.

Example

Assuming openapi.json is in the current directory:

postman:generate openapi.json collections/my-api.postman.json --folder="Wallet & Transactions"

In Postman, go to Import → Upload File, select collections/my-api.postman.json, and your requests appear grouped under Wallet & Transactions.

Contributing

Fork the repository

Clone your fork and create a branch:

git clone https://github.com/your-vendor/openapi-to-postman.git cd openapi-to-postman git checkout -b feature/your-feature

  1. Make changes and submit a pull request

License

MIT © Your Name

adexyme/openapi-to-postman 适用场景与选型建议

adexyme/openapi-to-postman 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 04 月 25 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 adexyme/openapi-to-postman 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 adexyme/openapi-to-postman 我们能提供哪些服务?
定制开发 / 二次开发

基于 adexyme/openapi-to-postman 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-04-25