ancarebeca / FullCalendarBundle

Symfony3 integration with the library FullCalendar.js
36 stars 38 forks source link

FullCalendarBundle not supported for symfony 3.4.8 #52

Open omararf1 opened 6 years ago

omararf1 commented 6 years ago

a conflict by installing FullCalendarBundle composer require ancarebeca/full-calendar-bundle gives:

3coma3 commented 6 years ago

Same problem here, it doesn't look like it's not compatible, rather than FullCalendarBundle is requiring symfony/symfony (the entire framework) and that is conflicting in installations based on symfony/skeleton + flex, that end up having this in composer.json:

"conflict": { "symfony/symfony": "*" },

Which marks symfony/symfony conflicting with "anything". As the package that would supply the dependency is indeed the installed symfony/skeleton (ie: "root"), the conflict is preventing the installation.

All this is what I understand from: this thread in SO.

Is there a chance to change the dependency from symfony/symfony to just symfony/framework-bundle?

3coma3 commented 6 years ago

I confirm that after cloning this repo and changing the conflict from symfony/symfony to symfony/framework-bundle I got it to install. Not sure if and how it will work, but I will stay tuned for feedback here. Thanks!