Download the PHP package adexyme/openapi-to-postman without Composer

On this page you can find all versions of the php package adexyme/openapi-to-postman. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package openapi-to-postman

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


All versions of openapi-to-postman with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
illuminate/support Version ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0|| ^11.0 || ^12.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package adexyme/openapi-to-postman contains the following files

Loading the files please wait ....