I have to migrate an application from Zend Framework 1.12.0 to version 2. There seem to be no migration guides yet. I have already studied ZF2 coding conventions and I adopted dependency injection (Zend\Di) and PHP 5.3 namespaces. My goal is to refactor my ZF1 application into a ZF2 module.
Question: Is it possible to proceed step-by-step with an at least partly working application after every step and avoid huge refactoring steps? If yes, what are the steps?
Here's my idea of such a step-by-step migration, but I don't know if I end up with a working application after every step:
- Start by setting up the ZF2 Skeleton Application
- Set up a new module (MyApp) and reorganize the contents of my ZF1 application into the MyApp module folder structure. Then set up very basic configuration and bootstrapping and migrate the IndexController by extending it from the ZF2 AbstractActionController. The models (Zend_Db) and views (Zend_View) will be migrated later. The goal here is to have a working IndexController::indexAction which doesn't have many dependencies.
- Set up more configuration and bootstrapping (Routing, Translate, Locale, Cache, Db, Acl, ViewHelpers, ...). I'd like to set up the ZF1 versions of these components first and migrate them later one by one.
- Migrate the other controllers and set up dependency injection into the controllers either with Zend\Di or by using the ServiceManager.
- Set up automatic deployment by making the old phing scripts work with the new directory structure.
- Migrate the views (including helpers) and forms to ZF2.
- Migrate the models (from Zend_Db either to ZF2 Zend\Db or to Doctrine).
- Migrate other ZF1 components one by one (Translate, Locale, Cache, Acl, ...).
- Refactoring rehab and long holiday.
However, I will have a workin application after every step only if certain ZF2 components work together with ZF1 components. I have no idea if it's e.g. possible to use ZF1 views (and view helpers) with ZF2 controllers.