├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── typescript-transformer.php ├── index.d.ts ├── psalm.xml └── src ├── Commands └── TypeScriptTransformCommand.php ├── Transformers ├── DtoTransformer.php └── SpatieStateTransformer.php ├── TypeProcessors └── LaravelCollectionTypeProcessor.php └── TypeScriptTransformerServiceProvider.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/composer.json -------------------------------------------------------------------------------- /config/typescript-transformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/config/typescript-transformer.php -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Commands/TypeScriptTransformCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/src/Commands/TypeScriptTransformCommand.php -------------------------------------------------------------------------------- /src/Transformers/DtoTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/src/Transformers/DtoTransformer.php -------------------------------------------------------------------------------- /src/Transformers/SpatieStateTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/src/Transformers/SpatieStateTransformer.php -------------------------------------------------------------------------------- /src/TypeProcessors/LaravelCollectionTypeProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/src/TypeProcessors/LaravelCollectionTypeProcessor.php -------------------------------------------------------------------------------- /src/TypeScriptTransformerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-typescript-transformer/HEAD/src/TypeScriptTransformerServiceProvider.php --------------------------------------------------------------------------------