sedlatschek / laravel-typescript-writer
This is my package laravel-typescript-writer
Installs: 2 142
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 2
Requires
- php: ^8.1
- illuminate/contracts: ^9.0|^10.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.0
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
This package is auto-updated.
Last update: 2024-11-09 11:47:16 UTC
README
Write typescript data out of laravel. Does not generate interfaces. Eg.:
$simon = [ 'name' => 'Simon' ]
will turn into
export const simon: Person = { name: "Simon" }
Installation
You can install the package via composer:
composer require --dev sedlatschek/laravel-typescript-writer
You should publish the config file with:
php artisan vendor:publish --tag="typescript-writer-config"
This is the contents of the published config file:
return [ // The typescript file indentation 'indentation' => 2, // The end-of-line character 'eol_char' => PHP_EOL, // Whether to use single or double quotes for strings 'single_quote' => true, // The files that should be written 'files' => [ /* new TypescriptFile(__DIR__.'/example.ts', [ // The contents of the file new TypescriptData('Array<Test>', 'test', [ [ 'id' => 33, 'name' => 'test', 'active' => true, 'languages' => [ 'German', 'English', ], ], ]), ]), */ ], ];
Configuration
Value Replacements
You can replace given values with hardcoded strings. This can be useful if you have an enum that can be matched with the output values.
new TypescriptData( 'Array<Test>', 'test', // the data [ [ 'test' => [ 'flags' => [ 1, 2, 3, ], ], ], ], // the configured replacements [ '*.test.flags' => [ 1 => 'SomeEnum.ABC', 2 => 'SomeEnum.DEF', 3 => 'SomeEnum.GHJ', ], ]),
will output
export const test: Array<Test> = [ { test: { flags: [ SomeEnum.ABC, SomeEnum.DEF, SomeEnum.GHJ ] } } ];
Usage
php artisan typescript-writer
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.