It's unclear how to install PHPSpreadsheet whether with composer or by other means for use with migrate_spreadsheet.

CommentFileSizeAuthor
#3 installation-2817259-3.patch962 bytesclaudiu.cristea

Comments

cruno created an issue. See original summary.

cruno’s picture

I was able to get it installed with composer using the following format:

{
    ....
    "repositories": [
        {
            "type": "composer",
            "url": "https://packagist.drupal-composer.org"
        },
        {
          "type": "package",
          "package": {
            "name": "phpoffice/phpspreadsheet",
            "version": "0.0",
            "dist": {
              "url": "https://github.com/PHPOffice/PhpSpreadsheet/archive/develop.zip",
              "type": "zip"
            }
          }
        }
    ],
    "require": {
        "composer/installers": "^1.0.20",
        "phpoffice/phpspreadsheet": "~0.0",
        "drupal/core": "8.2.0",
        "drupal/migrate_spreadsheet": "8.1.0-alpha2",
    },
    "autoload": {
        "psr-4": {
            "Drupal\\composer_manager\\Composer\\": "web/modules/contrib/composer_manager/src/Composer",
            "PhpOffice\\PhpSpreadsheet\\": "vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet"
        }
    }
    ....
}
claudiu.cristea’s picture

StatusFileSize
new962 bytes
claudiu.cristea’s picture

Status: Active » Needs review

claudiu.cristea’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.