Hi All,
For zend-stratigility-dispatch:
- removed the constructor in the RouterInterface in favor of setConfig(array $config) and getConfig() methods.
For zend-stratigility-skeleton:
- changed the folder structure of the skeleton in favor of:
/app (the root folder of the application)
/app/config (the configuration folder)
/app/template (the template folder)
/app/src (the source code of the application, with namespace App\)
/app/src/Action (the action folder, App\Action)
/app/src/Model (the model folder, App\Model)
/public (the public folder)
/test (the unit test folder)
This new folder structure looks better, because all the application is inside the /app folder.
I also renamed the domain folder with model.
- added the .htaccess in public
- added the apache and nginx virtual host configuration in README.md
- updated the README.md with more details about the middleware architecture
- renamed the template.php file with layout.php
Regards,
Enrico Zimuel