Command line tool for zendframework
zf [--global-opts] action-name [--action-opts] provider-name [--provider-opts] [provider parameters ...]
zf is a command line tool to create and manage zendframework projects.
The CLI, or command line tool (internally known as the console tool), is currently the primary interface for dispatching Zend_Tool requests. With the CLI tool, developers can issue tooling requests inside the "command line window", also commonly known as a "terminal" window.
This will show the current version number of the copy of Zend Framework the zf.php tool is using.
This will show what information is in the tooling systems manifest. This is more important for provider developers than casual users of the tooling system.
The project provider is the first command you might want to run. This will setup the basic structure of your application. This is required before any of the other providers can be executed.
This will create a module named Blog at application/modules/Blog, and all of the artifacts that a module will need.
This will create a controller named Auth, specifically it will create a file at application/controllers/AuthController.php with the AuthController inside.
This will create an action in an existing controller.
This will create a view script in the controller folder of Auth.
This will create a model User.
This will create a form Auth.
This will configure your database connection and is saved in your application.ini.
This creates a Zend_Db_Table model/data file.
This enable layout in your application and creates necessary files and store this to your application.ini.
More information about zendframework project can be found at <http://framework.zend.com/>.
The development is currently coordinated by Zend Technologies Ltd. <http://framework.zend.com>.
This manual page was written by Frank Habermann <[email protected]>, for the Debian project (but may be used by others).