
 Beech command line interface (CLI)
 
 Usage:
 $ php beech [command] [options] [arguments]
 
 Options:
 -?|-h, --help                                      Display this help message
 -v, --version                                      Display this application version
 -l, --list                                         Display all file in `entry` directory
 
 PHP development server
 $ php beech serve                                  PHP local development server 
                                                     start port 8000 custom by -p, --port
 
 The following commands are available for entry class:
 
 Initialize for usage `entry`
 $ php beech init                                   Initialize for usage the `entry`
 
 Call entry class
 $ php beech {class}/{method}                       To Call class and method.
 $ php beech {class}/{method}/{1}/{2}/{...}         To Using parameter(s) in the method.
 
 Beech make (entry)
 $ php beech make:entry {Foobar}                    Create a new entry class
 
 The following commands are available for PHP Beech framework (LTS):
 
 Beech make (PHP Beech framework supported)
 $ php beech make:controller {FoobarController}     Create a new controller class
 $ php beech make:model {Foobar}                    Create a new model class
 $ php beech make:view {foobar.view}                Create a new view file default blank view
                                                      - with HTML basic tag add arguments --html
                                                      - with HTML blog tag add arguments --blog
 
 * Tips: You may use the make with arguments -a, --all for generater all modules
