mglaman / drupal-test-helpers

Helpers for writing better Kernel and Unit tests for Drupal
GNU General Public License v2.0
10 stars 2 forks source link

Add 11.x as a drupal/core version #12

Open joachim-n opened 1 year ago

joachim-n commented 1 year ago

This won't install on 11.x because of the composer.json requirement.

mglaman commented 1 year ago

:/ is there a documented way for this to work? just ^11 or || 11.x?

claudiu-cristea commented 3 months ago

I think drupal/core should be require-dev dependency

mglaman commented 3 months ago

That could work, it's basically the same as drupal/core: '*'

MurzNN commented 2 months ago

I implemented support for Drupal 11.x in this issue https://www.drupal.org/project/test_helpers/issues/3456236 - please try it and report if all is okay or not.

And if you have other problems, could you please file an issue in Drupal.org? I will try to help you with fixing them!

Also, here is a GitHub mirror of the module: https://github.com/Murz-Drupal/Drupal-Test-Helpers to fork.

mglaman commented 2 months ago

@MurzNN your project and this project are very different.

MurzNN commented 2 months ago

Oh, sorry, saw the same name and thought that this is a clone of my project :)

MurzNN commented 2 months ago

By the way, maybe try to join forces and merge these two modules into one? What do you think about this?

claudiu-cristea commented 2 months ago

@mglaman, OK, I've changed the constraint to "drupal/core": "*" in #18. Could you, please, take a look?