Magento 2.3 & Composer – Update Extension

composermagento2.3

I would like to update my extension (I updated magento 2.2.6 to 2.3.1 from composer but looks like the extension also need to be updated because it's not working and it should be compatible).
Then i try :

composer.phar update Firebear_ImportExport

also tried :

composer.phar update Firebear/ImportExport

both returned

Package "firebear_importexport" listed for update is not installed.
Ignoring.

also tried :

composer.phar require Firebear/ImportExport

returned :

[InvalidArgumentException]
Could not find
package Firebear/ImportExport.

Then I suppose I am not using the correct syntax, which syntax should I use ?

Best Answer

the package name is firebear/importexport... You can check your composer.json in an editor etc.

https://firebearstudio.com/blog/improved-import-magento-2-extension-manual.html#via_Composer

Cheers Jan

Related Topic