| Package Data | |
|---|---|
| Maintainer Username: | fharsanto |
| Maintainer Contact: | feri.harsanto@gmail.com (Feri Harsanto) |
| Package Create Date: | 2021-05-31 |
| Package Last Update: | 2021-06-14 |
| Language: | PHP |
| License: | Apache-2.0 |
| Last Refreshed: | 2025-10-28 03:07:17 |
| Package Statistics | |
|---|---|
| Total Downloads: | 232 |
| Monthly Downloads: | 12 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
The package provides a simple way to create Open API service (REST API).
This package uses cebe/php-openapi for reading from Open API specification.
First of all, create lumen project
$ composer create-project --prefer-dist laravel/lumen my-project
in your project directory run:
$ composer require tukangketik/genoa
add the service provider in bootstrap/app.php
$app->register(Genoa\GeneratorOpenApiServiceProvider::class);
The service provider will register to artisan command.
$ php artisan genoa:yml pathOfYmlFile.yml
Add