I am an experienced test manager but completely new to Drupal as a new company uses it and I am trying to get my head around the testing options. Please forgive my ignorance if my questions don't make sense or is just dumb.
I can see that Drupal 8 makes use of PHPUnit and the documentation talks about the base classes (unit, kernel, browser, webdriver) that can be used to test different instances of Drupal instances at different levels. This all sounds great and I'm sure I shall be using some of it.
I'm using a module which reuse classes from easyrdf module, but since easyrdf is not included in core anymore I'm running into problems, because my module can't find used classes.
my solution is to add
"require": {
"easyrdf/easyrdf":"^0.9"
}
in the composer.json of my web/modules/contrib/my-module context.
I have created a Drupal 8 custom module, which uses openssl_x509_fingerprint to generate the thumbprint of certificate which is uploaded in the form. But, openssl_x509_fingerprint fails with the following error
I'm currently exporting selective portions of the config from my dev system into the config folder of some custom modules I'm developing for my new site, these provide bespoke content types based on bespoke field types.