This package for laravel converts your json responses to typescript types and interfaces using GPT-3.5 then stores them in the specified directory.
You can install the package via composer:
composer require benqoder/laravel-typescript-generator
You can publish the config file with:
php artisan vendor:publish --tag="laravel-typescript-gen-config"
This is the contents of the published config file:
return [
'enabled' => env('TYPESCRIPT_GENERATOR_ENABLED', false),
'openai_api_key' => env('OPENAI_API_KEY', ''),
'output_path' => env('TYPESCRIPT_GENERATOR_OUTPUT_PATH', '.typescript-generator'),
];
Register Typescript generator middleware as the last middleware in app/Http/Kernel.php
protected $middleware = [
...
\BenQoder\TypescriptGenerator\Middleware\TypescriptGenerator::class,
];
When you send request and the response header specifies content-type as "application/json" the Typesceipt interfaces will be generated and placed in "/.typescript-generator" directory or the custom direcory you specify in the config file.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.