- Issue created by @juxe
- πΊπΈUnited States phenaproxima Massachusetts
This already exists. Package Manager has a configuration object where you can set the explicit path to Composer: https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/packa...
So you could just do this:
drush cset package_manager.settings executables.composer /path/to/composer
Setting this value is probably not necessary in DDEV because I think Composer is available to the web server, but outside of DDEV I'm not sure there's much that Drupal CMS can do about this since it is completely server-specific.
Leaving this open for now in case anyone has some idea about what we could do here, but I'm kinda tempted to call this a "won't fix".
- π¦πΊAustralia juxe
Thanks phenaproxima. That command didn't work but I found there was some help text in the package_manager module and after installing the help module I could see how to add the config to my settings.
So you're right, there is a config available and it works on shared hosting. Thanks.
- πΊπΈUnited States phenaproxima Massachusetts
Great! Closing this out, since everything works as designed here.
- πΊπΈUnited States bigbaldy
#2 only solves half of the problem. "drush cset package_manager.settings executables.composer /path/to/composer" works but on the hosting server (pair.com) I use the wrong PHP client version is used. There needs to be a way to also point to the proper php cli version. For PHP.cgi I can point to the proper version for Drupal but accessing composer though package_manager connects to the hosting server's default of PHP 7.4.33 and so far, I have not been able to find a way to force the connection to a valid version of PHP needed for the needed version of composer.
- πΊπΈUnited States phenaproxima Massachusetts
When it comes to the PHP interpreter, there's not a ton we can do about that, honestly, at least not in Drupal CMS. This probably would need to be fixed upstream in Package Manager (which is a core module).
Moving to core's issue queue and retitling for that.
- πΊπΈUnited States bigbaldy
Here is a workaround for FastCGI on a shared hosting server with ssh access.
The challenge is that composer only looks for 'php' and there isn't a direct way to identify an alternatively named php and php.ini location.
The following script can be placed in your local bin folder. Follow the instructions in the script and edit it for your environment:
#!/bin/bash # # Run composer with the proper version of PHP and php.ini # # Place this script in your local bin directory and name it composer. Be sure to # set executable rights to the file (chmod u+w composer.) # Get composer.phar from getcomposer.org and copy it to your local bin directory. # # Since composer looks directly for the name 'php' you must also create a symlink in your # local bin folder: ln -s /usr/local/bin/php83 php (or wherever your version of php is located.) # # Create PATH necessary to run composer and anything else that many be needed. Be sure to include # the full path to your local bin directory as the first option. export PATH=[Full path to local bin directory]/bin:./vendor/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin # Create the variable that defines the location of php.ini export PHPRC=[Full path to directory where php.ini is located] # Start composer with everything from the command line. [Full path to your local bin directory]/composer.phar $*
Add the following lines to your Drupal settings.ini file:
$config['package_manager.settings']['executables']['composer'] = '[Full path to your local bin directory]/composer'; $config['package_manager.settings']['additional_trusted_composer_plugins'] = [ 'wikimedia/composer-merge-plugin', ]; $config['package_manager.settings']['include_unknown_files_in_project_root'] = TRUE;
'additional_trusted_composer_plugins' is need for some of the CMS recipies.
'include_unknown_files_in_project_root' is needed if you need to modify your environment using assets stored outside of Drupal CMS's root. In my case I need to modify .htaccess for FastCGI. - π¬π§United Kingdom londova
The whole idea of ββDrupal CMS was to make the installation process simple and accessible even to advanced users (non-coding experts).
This is definitely a bug that needs to be fixed, otherwise Drupal CMS will become POINTLESS.