https://github.com/georde/geosan
Ferramenta que facilita a criação de models, controllers, views, migrations e helpers no CodeIgniter MVC ou HMVC.
https://github.com/georde/geosan
codeigniter cria
Last synced: 10 months ago
JSON representation
Ferramenta que facilita a criação de models, controllers, views, migrations e helpers no CodeIgniter MVC ou HMVC.
- Host: GitHub
- URL: https://github.com/georde/geosan
- Owner: Georde
- License: mit
- Created: 2016-06-17T02:40:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-18T16:24:38.000Z (about 8 years ago)
- Last Synced: 2025-06-16T02:45:07.181Z (12 months ago)
- Topics: codeigniter, cria
- Language: PHP
- Homepage: https://georde.github.io/geosan/
- Size: 681 KB
- Stars: 22
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Geosan
### Geosan é uma ferramenta que facilita a criação de models, controllers, views, migrations e helpers no CodeIgniter MVC ou HMVC.
- create:controller - Diretiva para criar controllers
- create:model - Diretiva para criar models
- create:view - Diretiva para criar views
- create:helper - Diretiva para criar helpers
- create:migration - Diretiva para criar migrations
## Instalação:
*Dentro da pasta do projeto abra o terminal e execute:*
composer require georde/geosan
*Finalizada a instalçao, execute*
cp vendor/georde/geosan/geosan geosan
##Como usar:
####Criando Controllers
*Controller na pasta padrao*
php geosan create:controller [nome]
*Controller em um módulo*
php geosan create:controller [nome] [modulo]
####Criando Models
*Model na pasta padrao*
php geosan create:model [nome]
*Model em um módulo*
php geosan create:model [nome] [modulo]
####Criando Views
*View na pasta padrao*
php geosan create:view [nome]
*View em um módulo*
php geosan create:view [nome] [modulo]
####Criando migrations
php geosan create:migration [nome]
####Criando helpers
php geosan create:helper [nome]