2

I followed this tutorial in order to install ZF and it installed the zend-mvc version 3.0.1, after that I tried to install doctrine orm module: php composer.phar require doctrine/doctrine-orm-module and I got this error:

enter image description here

How can I install ZF3 and Doctrine ORM Module without getting this error?

Fge
  • 2,971
  • 4
  • 23
  • 37
davezom
  • 21
  • 2

1 Answers1

0

You might want to run the install again, depending on when you tried this. doctrine-orm-module 1.0.0 was released to support ZF2 and ZF3 on 14 July 2016.

$ composer create-project -s dev zendframework/skeleton-application path/to/install

Might be a duplicate.

Community
  • 1
  • 1
Leon Vismer
  • 4,925
  • 1
  • 20
  • 22
  • 1
    That is not true, 1.0.0 is not compatible with ZF3, just found out: [here](https://github.com/doctrine/DoctrineORMModule/issues/491#issuecomment-233918577) – davezom Jul 20 '16 at 13:56
  • @davezom You are indeed correct. It is not yet fully compatible with zend-mvc as per the [git issue](https://github.com/doctrine/DoctrineORMModule/issues/491) – Leon Vismer Jul 20 '16 at 15:28