Fork me on GitHub

Console application

Uses Symfony2 components, that facilitate the creation of user-friendly command-line interface.

|-- app/
    |-- Console/        # Console application
      |-- Commands/     # Command Set: to work with the database, and others
      |-- Views/        # The text data using the template `Twig`
      |-- scripts/      # A set of command files
      |-- Bootstrap.php # Loader class
      `-- index.php     # Entrance to the console application

Configuration

Features a console application can be easily expanded using configuration files more...

Loader (Bootstrap.php)

Loader (Bootstrap.php) initializes the console application.

Life cycle

The life cycle of a console application you can see here.