├── .gitignore ├── README.md ├── README_zh-TW.md ├── composer.json └── src └── Commands ├── CliCreate.php ├── Controller ├── CreateController.php └── template │ ├── controller │ ├── resourceController │ ├── resourcePresenter │ └── rest │ └── resourceFunctions │ ├── create │ ├── delete │ ├── edit │ ├── index │ ├── new │ ├── show │ └── update └── Model ├── CreateModel.php └── template ├── basicModel ├── entity ├── entityModel ├── manualModel └── model /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/README_zh-TW.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/composer.json -------------------------------------------------------------------------------- /src/Commands/CliCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/CliCreate.php -------------------------------------------------------------------------------- /src/Commands/Controller/CreateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/CreateController.php -------------------------------------------------------------------------------- /src/Commands/Controller/template/controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/controller -------------------------------------------------------------------------------- /src/Commands/Controller/template/resourceController: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/resourceController -------------------------------------------------------------------------------- /src/Commands/Controller/template/resourcePresenter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/resourcePresenter -------------------------------------------------------------------------------- /src/Commands/Controller/template/rest/resourceFunctions/create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/rest/resourceFunctions/create -------------------------------------------------------------------------------- /src/Commands/Controller/template/rest/resourceFunctions/delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/rest/resourceFunctions/delete -------------------------------------------------------------------------------- /src/Commands/Controller/template/rest/resourceFunctions/edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/rest/resourceFunctions/edit -------------------------------------------------------------------------------- /src/Commands/Controller/template/rest/resourceFunctions/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/rest/resourceFunctions/index -------------------------------------------------------------------------------- /src/Commands/Controller/template/rest/resourceFunctions/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/rest/resourceFunctions/new -------------------------------------------------------------------------------- /src/Commands/Controller/template/rest/resourceFunctions/show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/rest/resourceFunctions/show -------------------------------------------------------------------------------- /src/Commands/Controller/template/rest/resourceFunctions/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Controller/template/rest/resourceFunctions/update -------------------------------------------------------------------------------- /src/Commands/Model/CreateModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Model/CreateModel.php -------------------------------------------------------------------------------- /src/Commands/Model/template/basicModel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Model/template/basicModel -------------------------------------------------------------------------------- /src/Commands/Model/template/entity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Model/template/entity -------------------------------------------------------------------------------- /src/Commands/Model/template/entityModel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Model/template/entityModel -------------------------------------------------------------------------------- /src/Commands/Model/template/manualModel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Model/template/manualModel -------------------------------------------------------------------------------- /src/Commands/Model/template/model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkenWu/CodeIgniter4_CLI-Create/HEAD/src/Commands/Model/template/model --------------------------------------------------------------------------------