kaz29/cakephp-ts-export-plugin

TsExport plugin for CakePHP

Installs: 1 393

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

Type:cakephp-plugin

1.0.2 2022-03-18 06:46 UTC

This package is auto-updated.

Last update: 2024-04-18 11:29:47 UTC


README

A command to output the typescript interface for CakePHP entities.

Installation

You can install this plugin into your CakePHP application using composer.

The recommended way to install composer packages is:

composer require --dev kaz29/cakephp-ts-export-plugin

Usage

bin/cake export_entity --all

Example

bin/cake export_entity  Users
/**
 * User entity interface
 */
export interface User {
  id: number
  name: string
  email: string
  password: string
  created?: string
  modified?: string
}

Author

Kazuhiro Watanabe - cyo [at] mac.com - https://twitter.com/kaz_29

License

TsExport plugin for CakePHP is licensed under the MIT License - see the LICENSE file for details