gfaust-qb / skeleton-module-zf1-app
Skeleton to setup zendframework 1 modules like described in zend framework 1 reference.
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:zend1-module
Requires
- php-di/php-di: 4.4.*
- php-di/zf1-bridge: 2.0.*
- xemlock/zend1-composer-installer: *
Requires (Dev)
- gfaust-qb/qa-build-tools: @dev
- pds/skeleton: 1.*
Suggests
- phpseclib/phpseclib: PHPSecLib 2.0.*
- zendframework/zendframework1: The complete Zend Framework 1
- zf1/zend-controller: The Zend Controller package only
This package is not auto-updated.
Last update: 2025-03-30 04:40:22 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
- Create basic structure for your module with this composer-package.
- Update Classname in
Bootstrap.php
to one according to your module's name.- Also have a look at Module Bootstraps in Zend Framework Do's and Don'ts
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>
.