Download the PHP package danialzash/laravel-openapi-generator without Composer

On this page you can find all versions of the php package danialzash/laravel-openapi-generator. 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 laravel-openapi-generator

Laravel OpenAPI Generator

A powerful Laravel package that automatically generates OpenAPI 3.1 specifications from your Laravel application by analyzing routes, form requests, controllers, and JSON resources.

Features

Installation

1. Add the package to your composer.json

2. Run composer update

3. Publish the configuration (optional)

4. Run migrations

Usage

Scan Routes

Scan your application routes and populate the metadata database:

Generate OpenAPI Specification

Generate the OpenAPI specification file:

Sync Metadata

Synchronize database metadata with current codebase:

Configuration

The configuration file allows you to customize:

API Info

Route Filters

Security Schemes

Response Macros

Map custom response helpers to HTTP status codes:

Adding Custom Metadata

Via Database

After scanning routes, you can update metadata directly in the database:

Via Custom Schemas

Add custom schema definitions:

Validation Rule Mapping

The package automatically maps Laravel validation rules to OpenAPI types:

Laravel Rule OpenAPI Type
string type: string
integer type: integer
numeric type: number
boolean type: boolean
array type: array
email type: string, format: email
url type: string, format: uri
uuid type: string, format: uuid
date type: string, format: date
in:a,b,c enum: [a, b, c]
min:N minimum: N or minLength: N
max:N maximum: N or maxLength: N
required Added to required array
nullable nullable: true

Programmatic Usage

License

MIT License


All versions of laravel-openapi-generator with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/support Version ^10.0|^11.0
illuminate/database Version ^10.0|^11.0
illuminate/routing Version ^10.0|^11.0
illuminate/console Version ^10.0|^11.0
symfony/yaml Version ^6.0|^7.0
nikic/php-parser Version ^5.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 danialzash/laravel-openapi-generator contains the following files

Loading the files please wait ...