-
Notifications
You must be signed in to change notification settings - Fork 87
Missing dependency to zend-servicemanager ? #72
Comments
I have had the same issue while installing zend-form with zend-expressive (fastroute+pimple+plates). |
zend-form 2.10 is affected. This is bad, because my app crashes directly after autoloading. |
confirm the problem :( |
@pine3ree is right, the polyfill and autoloading is the problem. |
Will this be fixed, as far as I can see this problem still persists? |
@ikdekker send a patch: nothing fixes itself in OSS :-) |
This repository has been closed and moved to laminas/laminas-form; a new issue has been opened at laminas/laminas-form#46. |
Hi,
I'm using zend-form as a standalone library (in a Symfony2 project), and I realize that since this commit (introduced in v2.8.2) there is a new autoload file which creates an alias
FormElementManager
for eitherFormElementManagerV3Polyfill
orFormElementManagerV2Polyfill
(the latter in my case).So here's my problem : when I run a
composer update
theSensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap
post-update command fails with this error :Actually the command doesn't matter, the problem appears very soon during the autoload phase.
I suspect this error to be a consequence of the absence of zend-servicemanager as a non-dev dependency in the composer.json of this project.
Indeed, considering I'm using zend-form in standalone and that zend-servicemanager isn't a dependency of any of the others packages,
Zend\ServiceManager\AbstractPluginManager
doesn't exists and an error appears.I don't know if it makes sense to set zend-servicemanager as a non-dev requirement in this project, but I think it would resolve this problem (I'm not sure).
If you think it's not a good idea, please help me to find a solution because I'm pretty stucked there :-)
The text was updated successfully, but these errors were encountered: