zendframework / zend-component-installer

Composer post-package-(un)install scripts for modules and components.
BSD 3-Clause "New" or "Revised" License
46 stars 20 forks source link

Installer does not work with Zend\Expressive application #6

Closed RalfEggert closed 8 years ago

RalfEggert commented 8 years ago

I created a new Zend\Expressive application:

$ composer create-project zendframework/zend-expressive-skeleton 
$ cd zend-expressive-skeleton

Then I added the Component Installer:

$ composer require zendframework/zend-component-installer

After that I installed some components:

$ composer require zendframework/zend-form
$ composer require zendframework/zend-i18n

I thought that the ConfigProvider of these components should be added automatically to the config/config.php file. But nothing happened.

Is this a bug or just a misunderstanding by myself?

RalfEggert commented 8 years ago

Never mind. After installing the https://github.com/mtymek/expressive-config-manager and updating the config/config.php file it works as expected.