gfaust-qb/skeleton-module-zf1-app

Skeleton to setup zendframework 1 modules like described in zend framework 1 reference.

dev-master 2017-06-07 12:57 UTC

This package is not auto-updated.

Last update: 2024-04-14 00:02:05 UTC


README

Skeleton to setup zendframework 1 modules like described in https://framework.zend.com/manual/1.12/en/project-structure.filesystem.html.

Suggested structure

  • configs/
    • application.ini.dist
  • controllers/
    • helpers/
  • forms/
  • layouts/
    • filters/
    • helpers/
    • scripts/
  • models/
  • services/
  • views/
    • filters/
    • helpers/
    • scripts/
  • Bootstrap.php
  • CHANGELOG.md
  • LICENSE
  • README.md (this file)
  • composer.json

Usage

  1. Create basic structure for your module with this composer-package.
  2. Update Classname in Bootstrap.php to one according to your module's name.

Notice

You can also do this on the CLI with the Zend_Tool like described in Using Zend_Tool On The Command Line. The related command is: zf create module <MODULENAME>.