oooiik / laravel-export-postman
Automatically generate a Postman collection based on your API routes.
Installs: 619
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 4
pkg:composer/oooiik/laravel-export-postman
Requires
- php: ^7.1|^8.0
- ext-json: *
- illuminate/config: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0
- illuminate/console: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0
- illuminate/contracts: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0
- illuminate/routing: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0
- illuminate/support: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0
This package is auto-updated.
Last update: 2025-11-19 08:54:56 UTC
README
Package allows you to automatically generate a Postman collection based on your routes.
Installation
composer require oooiik/laravel-export-postman
Configuration
You can modify any of the export-postman.php config values to suit your export requirements.
Php Comments Documentation for API Annotations
Authentication
@AuthNo
No authentication is required for the annotated API endpoint.
@AuthParent
Inherits the authentication settings from the parent endpoint.
@AuthBearer [token]
Requires Bearer token authentication. Replace [token] with the actual token. Example:
@AuthBearer abc123
Headers
@Header [key] => [value]
Specifies a custom header for the API request.
Replace [key] with the header name and [value] with the header value.
@Header Accept => application/json
@Header Content-Type => application/json
Descriptions
@DescriptionContext [context]
Provides a brief description or context for the API request. Replace [context] with the description.
@DescriptionBasePath [path]
Specifies the base path description for the API endpoint. Replace [path] with the base path. Example:
@DescriptionBasePath /dir/file
@DescriptionResourcePath [path]
Specifies the resource path description for the API endpoint. Replace [path] with the resource path.
Pre-Request Scripts
@PreRequestScriptContext [path]
Defines a pre-request script to be executed before the API request. Replace [path] with the context or location of the script.
@PreRequestScriptFileBasePath [path]
Specifies the base path to the file containing the pre-request script. Replace [path] with the file location relative to the base directory.
@PreRequestScriptFileResourcePath [path]
Specifies the resource path to the file containing the pre-request script. Replace [path] with the specific file location.
Test Scripts
@TestScriptContext [context]
Defines a test script to be executed after the API request. Replace [context] with the context or description of the test script.
@TestScriptFileBasePath [path]
Specifies the base path to the file containing the test script. Replace [path] with the file location relative to the base directory.
@TestScriptFileResourcePath [path]
Specifies the resource path to the file containing the test script. Replace [path] with the specific file location.
Example:
class Container ... { /** * @AuthNo * @Header Accept => application/json * @DescriptionContext description for postman * @PreRequestScriptContext console.log('pre-request index method') * @TestScriptContext console.log('test index method') */ public function index(...) {...} /** * @AuthBearer {{TOKEN}} * @PreRequestScriptFileBasePath ./dir/filename * @TestScriptFileResourcePath ./dir/filename */ public function Show(...) {...} }
Usage
php artisan export:postman