ymcatwincities / openy

The Open Y platform. See README.md below
https://openy.org
GNU General Public License v3.0
49 stars 111 forks source link

Fix conflict with drupal/devel in PHP8 #2641

Closed froboy closed 2 years ago

froboy commented 2 years ago

Original Issue: none

Devel requires doctrine/common:^2.7 which requires doctrine/inflector:^1.0. inflector didn't allow PHP 8 support until 1.4.2, so we need at least that in order to still use it.

Steps for review

General checks

Thank you for your contribution!

gundevel commented 2 years ago

Refer to this link for build results (access rights to CI server needed): http://openy.cibox.tools:8080//job/PR_BUILDER_COMPOSER/3735/

froboy commented 2 years ago

This also works as a workaround:

composer require doctrine/inflector:"1.4.4 as 1.2" drupal/devel:"^4" --dev -W

froboy commented 2 years ago

@podarok when you get a chance, I've run into this a few times now.

podarok commented 2 years ago

Thank you