A complete platform for building web applications.
Generate new folder or file for command or migration or seeder or model or controller or view.
php creator make
php creator make command mycommand
it will create new command file inside application/controllers/Creator/commands/ directory.
php creator make migration my-app-name
it will create new migration file inside application/migrations/ directory.
php creator make seeder my-app-name
it will create new seeder file inside application/migrations/seeds/ directory.
php creator make model my-model-name my-app-name
it will create new model file my-model-name_model.php inside application/models/my-app-name/ directory.
php creator make controller my-controller-name my-app-name
it will create new controller file my-controller-name.php inside application/controllers/my-app-name/ directory.
php creator make view my-controller-name my-app-name
it will create create.php, edit.php, list.php and show.php  file inside application/views/my-app-name/my-controller-name/ directory.