Concrete5 5.7: using a ServiceProvider cross-package
问题 I'm migrating old code to 5.7, and I'm running into a weird issue when it comes to helpers. I'm working with two packages - let's call them A and B. Package A one implements a ServiceProvider. I would like to use it in a controller in package B, but it seems unable to find it properly. I'm configuring it in the install() function of package A, as follows $providers = Config::get('providers'); if (!$providers) { $providers = array('group_membership' => '\Concrete\Package\A\Src\GroupMembership