I have an old project written in ZF1.11 that needs updating. Ideally up to PHP 7.2. It is in the older style without even any namespacing.
I have brought in the use of composer and the framework itself (as well as PHPUnit / DBUnit) is now in the vendor directory, as opposed to external includes. It uses the vendor autoloader for all external includes now.
I’ve followed the migration instructions here:
Put simply, nothing happened: none of the code was altered in any way, although laminas/laminas-dependency-plugin was added to composer.json.
Having read a couple of the topics in this forum, it seems to me that I have some work ahead of me to upgraded to ZF2 first. Is that the case or am I mistaken?